我正在使用具有PHP 5.3.1的XAMPP,在htdocs文件夹中具有restler结构
在我的htdocs文件夹中,我有index.php
<?php
require_once 'vendor/restler.php';
use Luracast\Restler\Restler;
$r = new Restler();
$r->addAPIClass('Say'); // repeat for more
$r->handle(); //serve the response
和say.php
<?php
class Say {
/*
* @url GET /
*/
function hello($to='world') {
return "Hello $to!";
}
function hi($to) {
return "Hi $to!";
}
}
在浏览器中,我放了
本地主机/ index.php的/说
或
本地主机/ index.php的/说出/你好
它给了我以下信息
致命错误:在第143行的/Applications/XAMPP/xamppfiles/htdocs/Luracast/Restler/AutoLoader.php中调用未定义函数Luracast \ Restler \ stream_resolve_include_path()
我做错了什么?
答案 0 :(得分:1)
问题在于PHP版本。从XAMPP更改为支持PHP 5.4及其现在正在运行的AMPSS
答案 1 :(得分:0)
不知道它是否有帮助,但你试过 写小写说?
localhost/index.php/say
您的代码对我来说很好......
铜 英格
答案 2 :(得分:0)
Restler 3是PHP 5.3,函数stream_resolve_include_path
将使用5.3.2及更高版本定义。