php copy and file存在功能:我可以使用绝对位置

时间:2013-07-18 23:02:03

标签: php

我是php的新手。我在绝对位置“/home/abc/def.pdf”上有一个pdf文件。我在/ var / www / html中有一个php代码(displaypdf.php),看起来像

<?php
 $pdfloc = $_GET['pdfl'];
 if (file_exists($pdfloc)){
     if (!copy($pdfloc, '/tmp/temp.pdf')) {
         echo " destination file not found";
     }
     else {
         echo " file copied";
     }
 }
 else {
     echo " source file not found";
 }
?>

当我http://localhost/displaypdf.php?pdfl="/home/abc/def.pdf"时,它说“找不到源文件”,但我确实拥有-rwxr-xr-x权限的源文件。我做错了什么?

0 个答案:

没有答案