require_once() cant find the include path

為{幸葍}努か 提交于 2019-12-12 01:28:40

问题


Hi i am trying to indlude a file by using require_once(). i am using xampp apache php server. the file test.php is in htdocs drupal folder is also in the same directory where the include files is. the code in line 5 is

require_once ‘drupal7/includes/bootstrap.inc’;

i am getting error

Warning: Division by zero in C:\xampp\htdocs\import.php on line 5

Warning: require_once(inc’) [function.require-once]: failed to open stream: No such file or directory in C:\xampp\htdocs\import.php on line 5

Fatal error: require_once() [function.require]: Failed opening required 'inc’' (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\import.php on line 5

someone please guide me how to include a local file.


回答1:


Looks like you have "fancy" single quotes in line 5. (Did you copy this from somewhere?) Change them to regular single quotes, like these:

require_once 'drupal7/includes/bootstrap.inc';


来源:https://stackoverflow.com/questions/3561442/require-once-cant-find-the-include-path

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!