本文整理汇总了PHP中JsonHelper::setJsonContentTypeHeader方法的典型用法代码示例。如果您正苦于以下问题:PHP JsonHelper::setJsonContentTypeHeader方法的具体用法?PHP JsonHelper::setJsonContentTypeHeader怎么用?PHP JsonHelper::setJsonContentTypeHeader使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JsonHelper
的用法示例。
在下文中一共展示了JsonHelper::setJsonContentTypeHeader方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: returnJson
/**
* Responds to the request with JSON.
*
* @param array $var The array that should be JSON-encoded and returned to the browser.
* @param array $options An array of options.
*
* The $options array can contain the following values:
*
* - `'expires'` - Sets the Expires header value (in seconds). Defaults to `false`, which prevents
* the response from getting cached. If set to `null`, no Expires header will be set.
*
* @return null
*/
public function returnJson($var = array(), $options = array())
{
// Set the 'application/json' Content-Type header
JsonHelper::setJsonContentTypeHeader();
$options = array_merge(array('expires' => false), $options);
// Set the Expires header
if ($options['expires'] === false) {
HeaderHelper::setNoCache();
} else {
if ($options['expires']) {
HeaderHelper::setExpires($options['expires']);
}
}
// Output it into a buffer, in case TasksService wants to close the connection prematurely
ob_start();
echo JsonHelper::encode($var);
craft()->end();
}