Cakephp标头HTTP / 1.1 200 OK payU

时间:2015-12-25 18:15:26

标签: php cakephp response payu

我将集成商写入Pauy支付系统。当我接受某种情况时,我会通过状态订单回复我。当我回忆这个时,我必须使用

header("HTTP/1.1 200 OK");

停止付款回复。

但我不知道如何在cakephp 2.x控制器中使用它?

我试试:

     $this->response->header("HTTP/1.1", "200 OK");

     $this->response->statusCode(200);

但这不起作用。

1 个答案:

答案 0 :(得分:2)

您尝试的内容应该在Controller中工作,即:

$this->response->statusCode(200);

但是,这仍然会按照默认行为加载2.x中的方法视图。如果要停止默认行为而只返回200代码,请尝试以下操作:

return $this->response;

在您设置了状态代码后(上面一行)。