我的应用程序中的大多数响应都是视图或JSON。我无法弄清楚如何将它们放在ResponseInterface
中实现PSR-7的对象中。
以下是我目前的工作:
// Views
header('Content-Type: text/html; charset=utf-8');
header('Content-Language: en-CA');
echo $twig->render('foo.html.twig', array(
'param' => 'value'
/* ... */
));
// JSON
header('Content-Type: application/json; charset=utf-8');
echo json_encode($foo);
以下是我试图用PSR-7做的事情:
// Views
$response = new Http\Response(200, array(
'Content-Type' => 'text/html; charset=utf-8',
'Content-Language' => 'en-CA'
));
// what to do here to put the Twig output in the response??
foreach ($response->getHeaders() as $k => $values) {
foreach ($values as $v) {
header(sprintf('%s: %s', $k, $v), false);
}
}
echo (string) $response->getBody();
我认为只有不同的标题才能使JSON响应类似。据我所知,消息正文是StreamInterface
,当我尝试输出用fopen
创建的文件资源时,它可以正常工作,但我如何使用字符串呢?
更新
我的代码中的 Http\Response
实际上是我自己在PSR-7中ResponseInterface
的实现。我已经实现了所有的接口,因为我目前仍然使用PHP 5.3,我找不到任何与PHP兼容的实现< 5.4。这是Http\Response
:
public function __construct($code = 200, array $headers = array()) {
if (!in_array($code, static::$validCodes, true)) {
throw new \InvalidArgumentException('Invalid HTTP status code');
}
parent::__construct($headers);
$this->code = $code;
}
我可以修改我的实现以接受输出作为构造函数参数,或者我可以使用withBody
实现的MessageInterface
方法。无论我如何操作,问题都是如何将字符串转换为流。
答案 0 :(得分:2)
ResponseInterface
延伸MessageInterface
,它提供了您找到的getBody()
吸气剂。 PSR-7期望实现ResponseInterface
的对象是不可变的,如果不修改构造函数,就无法实现。
正在运行PHP< 5.4(并且可以有效地提示类型提示),修改如下:
public function __construct($code = 200, array $headers = array(), $content='') {
if (!in_array($code, static::$validCodes, true)) {
throw new \InvalidArgumentException('Invalid HTTP status code');
}
parent::__construct($headers);
$this->code = $code;
$this->content = (string) $content;
}
定义私人成员$content
,如下所示:
private $content = '';
一个吸气剂:
public function getBody() {
return $this->content;
}
你很高兴去吧!