mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 03:50:56 +08:00
15 lines
343 B
PHP
15 lines
343 B
PHP
<?php
|
|
|
|
namespace App\Library\Http;
|
|
|
|
class Response extends \Phalcon\Http\Response
|
|
{
|
|
|
|
public function setJsonContent($content, $jsonOptions = 0, $depth = 512)
|
|
{
|
|
$jsonOptions = JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_PRESERVE_ZERO_FRACTION;
|
|
|
|
parent::setJsonContent($content, $jsonOptions, $depth);
|
|
}
|
|
|
|
} |