在public_html之外的目录中读取文件



我正在尝试读取public_html文件夹外的文件。

$file = '/var/www/new.txt';
$fileHandle = file_get_contents($file);
if($result)
{
$o = mysqli_num_rows($result);

if ($o)
readfile($file);
else
echo 'Error authenticating please contact support';
}
else {
echo '';
}

我认为php文件没有权限访问这个文件,我怎么能使它有访问这个文件?

尝试通过关系路径访问文件。

例如你的文件夹结构是:

-folder
--new.txt

-public_html
--reader.php

在你的reader.php:

<?php
$file = '../folder/new.txt';

$fileHandle = file_get_contents($file);

相关内容

  • 没有找到相关文章

最新更新