私はこれを次のURLで実行し、SimpleAuth.phpを実行しようとしています
http://localhost/restler/public/examples/nof/SimpleAuth.php
そしてそれは与える
Fatal error: Interface 'Luracast\Restler\iAuthenticate' not found in C:\wamp\www\Restler\public\examples\nof\SimpleAuth.php on line 5
SimpleAuth.phpのコンテンツ
use Luracast\Restler\iAuthenticate;
class SimpleAuth implements iAuthenticate
{
const KEY = 'rEsTlEr2';
function __isAllowed()
{
return isset($_GET['key']) && $_GET['key'] == SimpleAuth::KEY ? TRUE : FALSE;
}
function key()
{
return SimpleAuth::KEY;
}
}
iAuthenticate.php
namespace Luracast\Restler;
interface iAuthenticate extends iFilter{ }