当我尝试在我的应用程序中包含Restler3 API类的某些类时,出现以下错误:
致命错误:Class' Luracast \ Restler \ RestException'找不到 第24行/var/www/html/teste.dev/public_html/api_test/Access.php
我做错了什么?我想它是命名空间但我该如何解决?
这是我的代码:
<?php
use Luracast\Restler\RestException;
class Access
{
/**
*
* Um servico de teste
*
*/
public function teste()
{
include_once($_SERVER['DOCUMENT_ROOT']."../../lib/config/config.php");
include_once("../main.class.php");
include_once("../users/UsersAPI.class.php");
include_once 'Logging.php';
throw new RestException(302, 'not a valid user');
return "Ok";
}
...
有什么想法吗?