且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

服务器中php文件中的错误

更新时间:2023-02-05 09:02:34

PHP提供了一个很好的线索,指出了错误所在:
PHP gives a pretty good clue as to what is wrong:
require_once(__DIR__android_connect/db_connect.php)


在我看来这错了.您应该将代码更改为:


Which looks wrong to me. You should change the code to:

require_once(__DIR__ .'/android_connect/db_connect.php')