2013-10-10 96 views
0

我得到这个错误,而扩展一个类驻留在相同的文件夹结构下。 致命错误:类“parseRestClient”未找到扩展类未找到codeigniter

//parseObject.php 
<?php 
class parseObject extends parseRestClient{ 


//parse.php 
<?php 
include 'parseConfig.php'; 
include 'parseObject.php'; 
include 'parseQuery.php'; 
include 'parseUser.php'; 
include 'parseFile.php'; 
include 'parsePush.php'; 
include 'parseGeoPoint.php'; 
include 'parseACL.php'; 
include 'parseCloud.php'; 

class parseRestClient{ 

回答

0

你需要在parseRestClient类加载你试图从它继承之前。在parseObject.php的顶部,尝试添加include('parse.php')