PHP is_file 和服务器根相对路径
请问如何使用 is_file 和 /folder/file.jpg 这样的路径?
谢谢你!
How can I use is_file with a path like: /folder/file.jpg please?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果路径以 / 开头,则表示该路径是绝对路径。当路径是相对路径时(即不以 / 开头),则采用相对于 php 脚本的路径。如果您希望 /folder/file.jpg 相对于服务器根目录,则可以附加根目录。
If the path starts with a / this means the path is absolute. When the path is relative (ie not starting with /) then the path relative to the php script is taken. If you want to have /folder/file.jpg relative to the server root, you can append the root.
使用
$_SERVER['DOCUMENT_ROOT']
:Use
$_SERVER['DOCUMENT_ROOT']
: