1

我正在尝试创建一个可以读取字符串中的通配符的 API 请求处理程序。理想的情况是这样的。

$myClass->httpGet('/account/[account_id]/list-prefs', function ($account_id) {
    // Do something with $account_id
});

[account_id]外卡在哪里。实际的 URI 如下所示:

http://api.example.com/account/123456/list-prefs

实际功能看起来像......

function httpGet($resource, $callback) {
    $URI = urldecode(str_replace('/'.$this->API_VERSION, '', $_SERVER['REQUEST_URI']));
    $match = preg_match_all('/\[([a-zA-Z0-9_]+)\]/', $resource, $array);
    if ($resource /*matches with wildcards*/ $URI) {
        // Do something with it.
    }
    ...
}

我的问题是...

  1. 我无法弄清楚如何将函数中的字符串与 URI 匹配以调用回调。
  2. 如何使用 URI 中提供的值解析字符串(将 [account_id] 替换为 123456)。
4

1 回答 1

1

我认为您缺少以下内容:

tokens = array('[account_id]' => '/\[([a-zA-Z0-9_]+)\]/');

然后:

function replaceTokens($resource) {
    # get uri with tokens replaced for actual regular expressions and return it
}

function httpGet($resource, $callback) {
    $URI = urldecode(str_replace('/'.$this->API_VERSION, '', $_SERVER['REQUEST_URI']));        
    $uriRegex = replaceTokens($resource);
    $match = preg_match_all($uriRegex, $URI, $array);
    if ($match) {
        // Do something with it.
    }
}
于 2012-12-11T19:56:49.530 回答