私は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!";
}
}
ブラウザで、私は
localhost/index.php/言う
また
localhost/index.php/Say/こんにちは
次のメッセージが表示されます
致命的なエラー: 143 行目の /Applications/XAMPP/xamppfiles/htdocs/Luracast/Restler/AutoLoader.php の未定義関数 Luracast\Restler\stream_resolve_include_path() の呼び出し
私は何を間違っていますか?