2010-09-14 211 views
0

我想包括了Zend框架,但我不斷收到此錯誤Zend框架,包括不工作

Warning: require_once(Zend/Json.php) [function.require-once]: failed to open stream: No such file or directory in /usr/www/users/eyelogicy/zone.eyelogic.co.za/weskom/form/classes/ZendFramework/Zend/Json/Decoder.php on line 25 

這裏是PHP代碼,我使用的包括框架,

set_include_path('classes/ZendFramework' . PATH_SEPARATOR . get_include_path()); 
require_once 'Zend/Json/Decoder.php'; 

任何想法?

Thanx提前!

回答

1

嘗試包含路徑的絕對路徑。

Using absolute path is also a good practise advice

一個平凡的優化可以做,以提高類加載的速度是要仔細注意你的include_path。特別是,你應該做四件事:使用絕對路徑(或相對於絕對路徑的路徑),減少你定義的包含路徑的數量,儘可能早地使用你的Zend Framework的include_path,並且只包括當前目錄路徑你的include_path。