如何在PHP中设置名称空间正确?

时间:2016-11-17 15:42:31

标签: php

我在目录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

0 个答案:

没有答案