在扩展类位于相同的文件夹结构下时,我收到此错误。 致命错误:未找到类'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{
答案 0 :(得分:0)
在尝试从中继承之前,您需要加载parseRestClient类。在parseObject.php
的顶部,尝试添加include('parse.php')
。