我是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
权限的源文件。我做错了什么?