This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/HttpFoundation/JsonResponse.php

61 lines
1.7 KiB
PHP
Raw Normal View History

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\HttpFoundation;
/**
* Response represents an HTTP response in JSON format.
*
* @author Igor Wiedler <igor@wiedler.ch>
*/
class JsonResponse extends Response
{
/**
* Constructor.
*
* @param mixed $data The response data
* @param integer $status The response status code
* @param array $headers An array of response headers
2012-03-19 17:27:08 +00:00
* @param string $jsonp A JSONP callback name
*/
2012-03-19 17:27:08 +00:00
public function __construct($data = array(), $status = 200, $headers = array(), $jsonp = '')
{
// root should be JSON object, not array
if (is_array($data) && 0 === count($data)) {
$data = new \ArrayObject();
}
2012-03-19 17:27:08 +00:00
$content = json_encode($data);
$contentType = 'application/json';
if (!empty($jsonp)) {
$content = sprintf('%s(%s);', $jsonp, $content);
// Not using application/javascript for compatibility reasons with older browsers.
$contentType = 'text/javascript';
}
parent::__construct(
2012-03-19 17:27:08 +00:00
$content,
$status,
2012-03-19 17:27:08 +00:00
array_merge(array('Content-Type' => $contentType), $headers)
);
}
/**
* {@inheritDoc}
2012-03-19 17:27:08 +00:00
*
* @param string $jsonp A JSONP callback name.
*/
2012-03-19 17:27:08 +00:00
static public function create($data = array(), $status = 200, $headers = array(), $jsonp = '')
{
2012-03-19 17:27:08 +00:00
return new static($data, $status, $headers, $jsonp = '');
}
}