我做了什么:
所以我的问题是,如果文件100%存在,我怎么会得到文件不存在的错误?谢谢!
<?php
require_once '/public_html/domain/lib/swift_required.php';
?>
警告:require_once(/public_html/domain/lib/swift_required.php)[function.require-once]:无法打开流:/home/myuser/public_html/domain/email.php中没有此类文件或目录第5行
致命错误:require_once()[function.require]:无法打开所需的'/public_html/domain/lib/swift_required.php'(include_path ='。:/ usr / lib / php:/ usr / local / lib / php')在第5行的/home/myuser/public_html/domain/email.php
这是来自FileZilla的我的目录的截图。 http://i.imgur.com/Zsy8y.jpg
答案 0 :(得分:2)
这是错误的:
// this is absolute path, just like /home/user or /var/www
require_once '/public_html/domain/lib/swift_required.php';
改为使用:
// this is relative path to the current file
require_once 'public_html/domain/lib/swift_required.php'; //notice: no '/' in the beggining
OR:
// so use this one if you know the whole path to the file
require_once ABSOLUTE_PATH_TO . 'public_html/domain/lib/swift_required.php';
OR:
// or use this one if you don't know the whole path
// or if the path will change (dev machine and production machine)
require_once dirname(__FILE__) . RELATIVE_PATH_TO . 'public_html/domain/lib/swift_required.php';