使用include_once我已經在那裏我已經創建變量我需要的所有路徑的文件頭,就像這樣:錯誤在PHP
$GLOBAL_stylePath = "http://localhost/pspace/css/";
(如果我不應該在上面使用HTTP,那麼如何這將是C://的htdocs/XAMPP/PSPACE/CSS/???)
include_once "/classes/authorizationUtils.php";
$authorizationUtils = new AuthorizationUtils();
不管怎麼說,在包括被搞亂了一切,給我的錯誤,如:
Warning: include_once() [function.include-once]: http:// wrapper is disabled in the server configuration by allow_url_include=0 in C:\xampp\htdocs\pspace\includes\header.php on line 12
我如何在我的php.in中啓用此配置。我有一個變量allow_url_include = off,當我「打開」它時,沒有發生變化。而且這樣的:
Warning: include_once() [function.include]: Failed opening 'http://localhost/pspace/classes/authorizationUtils.php' for inclusion (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\pspace\includes\header.php on line 12
你是否包含CSS文件?另外,'/ classes'指向文件系統(磁盤)根目錄,這可能是錯誤的。 – netcoder
不,我不包括CSS,只是作爲變量的一個例子。類會是錯誤的?你的意思是,任何保留的名字或什麼? –
不可以。您正在預先在'classes'中加上一個斜槓(即:'/ classes'),正如我所說,它可能指的是文件系統根目錄。 – netcoder