扩展类未找到codeigniter

时间:2013-10-10 22:16:34

标签: php codeigniter

在扩展类位于相同的文件夹结构下时,我收到此错误。 致命错误:未找到类'parseRestClient'

//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{

1 个答案:

答案 0 :(得分:0)

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