我对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
许可的源文件。我究竟做错了什么?