0

我对 REST 的一些概念有点困惑,希望能得到一些澄清。我正在关注本教程,所以我使用的任何代码都来自它。 http://phpmaster.com/rest-can-you-do-more-than-spell-it-3/

1)。每当我想发布数据时,我是否必须通过 curl 交易的整个过程?

<?php
// set up the URI value involved in a variable
$uri = "http://www.funland.com/summerschedule";

// set up the data that is going to be passed
$events = array(
array("event" => "20120601-0001",
      "name"  => "AC/DC Drink Till U Drop Concert",
      "date"  => "20120601",
      "time"  => "22000030"),
array("event" => "20120602-0001",
      "name"  => "Enya – Can You Feel the Peace",
      "date"  => "20120602",  
      "time"  => "19300045"),
array("event" => "20120603-0002",
      "name"  => "Nicki Menaj – The Midnight Girls Concerrtt",
      "date"  => "20120603",  
      "time"  => "21300039"));
$jsonData = json_encode($events) 

// perform the curl transaction
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonData);

$response = curl_exec($ch); 
$decode = json_decode($response);
print_r($resonse);

2. 每当我创建一个链接时,就 URI 而言,我是否需要做一些特别的事情,或者我会根据它的访问方式来格式化它吗?

要创建指向 www.example.com/restaurant/42 的链接,我会创建以下链接,还是我需要做其他事情?

//assuming $resource = restaurant in this example

<a href ="www.example.com/".$resource."/".$id">Item 42</a>

3. 对于解析 URL 路径的代码,我是在每个文件中都有这个,还是我会创建一个文件(例如 api.php)并在每个文件中包含它?

<?php
// assume autoloader available and configured
$path = parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
$path = trim($path, "/");
@list($resource, $params) = explode("/", $path, 2);

$resource = ucfirst(strtolower($resource));
$method = strtolower($_SERVER["REQUEST_METHOD"]);
$params = !empty($params) ? explode("/", $params) : array();

if (class_exists($resource)) {
   try {
     $resource = new $resource($params);
     $resource->{$method}();
}
catch (Exception $e) {
    header("HTTP/1.1 500 Internal Server Error");
}
}
else {
  header("HTTP/1.1 404 File Not Found");
}

4.我在哪里为某个类的每个功能设置可接受的“动词”?以下代码来自上面链接的教程的第 2 部分。我看到有一个类构造函数,但是我应该为那里的每个函数指定可接受的操作吗?也许我误解了这段代码,但我看不出它在哪里说 DELETE 不被接受为餐厅/id之类的东西

<?php
abstract class Resource
{
    protected static $httpMethods = array("GET", "POST", "HEAD",
    "PUT", "OPTIONS", "DELETE", "TRACE", "CONNECT"); 

protected $params;

public function __construct(array $params) {
    $this->params = $params;
}

protected function allowedHttpMethods() {
    $myMethods = array();
    $r = new \ReflectionClass($this);
    foreach ($r->getMethods(\ReflectionMethod::IS_PUBLIC) as $rm) {
        $myMethods[] = strtoupper($rm->name);
    }
    return array_intersect(self::$httpMethods, $myMethods);

}

public function __call($method, $arguments) {
    header("HTTP/1.1 405 Method Not Allowed", true, 405);
    header("Allow: " . join($this->allowedHttpMethods(), ", "));
}
}
4

2 回答 2

2

为了:

  1. 您可以编写一个封装整个 cURL 小曲的函数。

  2. 不确定是什么$resource$id指向什么,但这似乎是有道理的;请注意,URL 应以http://or开头https://

  3. 该代码看起来像一个典型的路由器,应该在每次请求时调用;确保在该代码之前设置您的自动加载器,以便您的类自动加载。

  4. 您的所有资源类都将从该基类扩展;通过public function get() { }在您的类中创建,路由器将在有方法的情况下自动调用该GET方法;无论您未实现什么,都会导致__call()运行,这将为 REST 客户端提供错误代码。

于 2012-08-28T14:57:30.617 回答
0

响应 Q4 - 我最喜欢的方法是创建一个表示 HTTP 进程的接口,并method_exists()在对被调用资源执行方法之前使用该接口检查该接口。

// declaring the methods
interface HTTP {
    public function get();
    public function post();
    public function put();
    ....
}

// checking if the attempted method is allowable
method_exists('HTTP', $method);
于 2012-08-28T14:59:42.173 回答