dsf4s5787 2016-10-20 06:35
浏览 132
已采纳

php - 函数require-once无法找到文件

I am implementing a code where visitors can email our company.

in my gmail.php, it has this code for line 11

require_once('PHPMailerAutoload.php') or exit();

the error it gives is when i run it is

Warning: require_once(1) [function.require-once]: failed to open stream: No such file or directory in /home/maxsell/public_html/php/gmail.php on line 11

Fatal error: require_once() [function.require]: Failed opening required '1' (include_path='/home/maxsell/php:.:/usr/lib/php:/usr/local/lib/php') in /home/maxsell/public_html/php/gmail.php on line 11

and if i click on [function.require-once] it loads

The requested URL /php/function.require-once was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

I made this in our other website and it worked there. I tried changing file path in require_once but it doesn't work. gmail.php and PHPMailerAutoload.php is in the same folder.

edit: here is a directory contents directory contents

  • 写回答

2条回答 默认 最新

  • doujubeng2942 2016-10-20 06:49
    关注

    The problem is the or exit()-part.

    when i use

    require_once("test.php") or exit();
    

    i get the same error, but

    require_once("test.php");
    

    works if the file exists, or throws a correct error if it doesn't.

    also, the common syntax is

    require_once "test.php";
    

    and the or exit() part is superfluous anyway, since require quits the script itself if the file is not found.

    edit:

    after some testing i suspect that the internal workings of this curious error is that require_once is not a function but a command structure, meaning that

    require_once('PHPMailerAutoload.php') or exit();
    

    is functionally the same as

    require_once ('PHPMailerAutoload.php' or exit());
    

    since the or-operator takes precedence.

    which makes your require fail because ('PHPMailerAutoload.php' or exit()) resolves to true, effectively making php try to require(true) which must fail.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 宇视监控服务器无法登录
  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥15 DruidDataSource一直closing
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据