PHP类未加载

时间:2012-04-23 10:31:50

标签: php wordpress classloader

我正在使用WordPress而我正在尝试编写一个使用其他插件文件的插件。获取文件的URL是正确的。当我从类中调用静态函数时,我能够包含该文件,它表示该类没有加载。

//loading the file
$url=plugins_url().'/nextgen-gallery/admin/functions.php';
include $url;

文件名为functions。php,其中包含一个定义为nggAdmin

的类

但是,当我调用function nggAdmin::create_gallery();,时,我收到以下错误:

Fatal error: Class 'nggAdmin' not found in /var/www/html/wordpress/wp-content/plugins/Product/addProductForm.php on line 27

1 个答案:

答案 0 :(得分:3)

plugins_url()为您提供了网址,例如http://example.com/wordpress/wp-plugins/,而不是服务器路径 - http://codex.wordpress.org/Function_Reference/plugins_url

使用WP_PLUGIN_DIR代替 - http://codex.wordpress.org/Determining_Plugin_and_Content_Directories