file_get_contents 函数不起作用
我的 file_get_contents()
函数有一些问题,当我尝试读取 URL 时,它无法正常工作
可以访问,但是当我尝试访问“classes/connect_temp.txt”等任何文件时“它无法访问。
这是我使用的一些代码
$file_path =realpath('./')."/classes/connect_temp.txt";
$temp_cont = file_get_contents($file_path);
if(empty($temp_cont)){$temp_cont=$this->dbSetings;}
我应该在代码中更改什么或者我应该检查哪些配置设置。
请帮我解决这个问题
I have some problem with file_get_contents()
function, it not working properly when I tried to read URL like
is accessible but when I tried to access any file like "classes/connect_temp.txt" it is not accessible.
Here is some code i use
$file_path =realpath('./')."/classes/connect_temp.txt";
$temp_cont = file_get_contents($file_path);
if(empty($temp_cont)){$temp_cont=$this->dbSetings;}
What should I change in code or which config settings should I check of it.
Please Help me on this problem
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(3)
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
使用
display_errors
和/或error_reporting
启用错误报告。Enable error reporting using
display_errors
and/orerror_reporting
.