Realpath 无法使用 ../files?
我正在wamp下开发。
echo realpath(APPPATH);
C:\wamp\www\salsaritmo\system\application
echo realpath(APPPATH . '..');
C:\wamp\www\salsaritmo\system
echo realpath(APPPATH . '../files'); //(which is the one i want)
不返回任何内容
I am developing under wamp.
echo realpath(APPPATH);
C:\wamp\www\salsaritmo\system\application
echo realpath(APPPATH . '..');
C:\wamp\www\salsaritmo\system
echo realpath(APPPATH . '../files'); //(which is the one i want)
returns nothing
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
realpath() 在失败时返回 FALSE,例如,如果文件不存在。
realpath() returns FALSE on failure, e.g. if the file does not exist.
您的 APPPATH 不以目录分隔符结尾,因此您最终会尝试 realpath('C:\wamp\www\salsaritmo\system../files'),这显然是无效的。尝试:
Your APPPATH doesn't end with a directory separator, so you're ending up trying to realpath('C:\wamp\www\salsaritmo\system../files'), which obviously isn't valid. Try: