Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是一名学生,我的英语不好,但我会尽我所能解释我的问题。
我刚刚下载了一个 PHP 示例程序供我个人参考,我只想运行这个 PHP 文件。我使用下面的屏幕截图以及整个文件发布了我遇到的错误。
运行 PHP 文件时出错:
PHP程序
您在 windows 中运行示例,但您需要的路径不是 windows 路径。
从您的屏幕截图中,config.php似乎initalize.php在同一目录中,因此您需要将第 16 行更改initalize.php为以下方式:
config.php
initalize.php
require_once(dirname(__FILE__).'/config.php');
这是因为您试图将文件插入不存在的文件config.php中,因此它会抛出错误检查您的包含文件夹intialize.php
intialize.php