0

Restler PHP REST Framework v3 でスマート URL ルートを実装する際に少し問題があります。基本的に、Restler は私のコメントを無視しているように見えます。index.php および tests.inc.php ファイルをここに添付しました。何が起こっているのか、PHPDoc コメントがあっても、restler はそれらを無視し、デフォルトの「tests」呼び出しにのみ応答し、「some/new/route」には応答しないようです。枠組み。

index.php

<?php

$root_dir = $_SERVER['DOCUMENT_ROOT'];
$base_dir = getcwd();
$include = "{$base_dir}/include";
require_once("{$include}/config.inc.php");
require_once("{$include}/library-general.inc.php");

//include restler library
$restler_dir = "{$root_dir}/restler/{$settings['restler_version_string']}";
require_once("{$restler_dir}/restler.php");

//restler configuration
use Luracast\Restler\Restler;
use Luracast\Restler\Defaults;

//include database connector class
require_once("{$include}/db_connector_mysql.inc.php");

//include api handler classes
require_once('test.inc.php');
require_once('accounts.inc.php');

//instantiate our restler object; call with argument "true" to run in production mode
$r = new Restler();

//bind api classes
$r->addAPIClass('Tests');
$r->addAPIClass('Accounts');

//set supported formats: JSON ONLY!
$r->setSupportedFormats('JsonFormat');

//handle the request
$r->handle();

test.inc.php

<?php

class Tests {

    private $dbc;
    private $function_log_tag;

    public function __construct () {
        $this->dbc = DB_Connector_MySQL::getConnection();
        $this->response = new stdClass();
    }

    /*
    ** @url GET /some/new/route
    */
    public function get () {
        //load required global variables
        global $settings;

        //set logging tag
        $this->function_log_tag = '[' . __CLASS__ . '::' . __FUNCTION__ . '][v' . $settings['version'] . ']';

        return $this->function_log_tag;
    }
}

根本的な問題を見つけるために、さまざまなことを試みてきました。「routes.php」ファイルを見つけることができなかったように見えることは注目に値するので、サーバーでの書き込み許可の問題である可能性があると考えています。とにかく、どんな助けでも大歓迎です!

4

1 に答える 1

0

あなたのコメントは有効な PHPDoc コメントではありません。ただの通常のコメントです。

正しい構文については、次を参照してください

<?php

class Tests {

    private $dbc;
    private $function_log_tag;

    public function __construct () {
        $this->dbc = DB_Connector_MySQL::getConnection();
        $this->response = new stdClass();
    }

    /**
    * @url GET /some/new/route
    */
    public function get () {
        //load required global variables
        global $settings;

        //set logging tag
        $this->function_log_tag = '[' . __CLASS__ . '::' . __FUNCTION__ . '][v' . $settings['version'] . ']';

        return $this->function_log_tag;
    }
}

Doc コメントは/**代わりにで始まります/*

于 2013-03-12T12:51:23.620 に答える