我在目录index.php
的服务器中加载了文件public_html
。
在这个文件中我设置了名称空间并使用如:
namespace public_html;
error_reporting(E_ALL);
ini_set('memory_limit', '-1');
set_time_limit(0);
use public_html\Helper\Curl\CurlHeaders;
use public_html\Helper\Curl\Curl as Curl;
use public_html\Helper\Pdo\FacadeQuery as Db;
因此,您看到的所有文件都位于根目录public_html
当我运行脚本时,我收到错误:
Fatal error: Class 'public_html\Helper\Pdo\FacadeQuery' not found in /home/bulud/public_html/parse.php on line 34