1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-23 20:00:27 +08:00
2020-01-30 16:51:10 +08:00

22 lines
379 B
PHP

<?php
namespace App\Library\Cache\Frontend;
class Json extends \Phalcon\Cache\Frontend\Json
{
/**
* Serializes data before storing them
*
* @param mixed $data
* @return string
*/
public function beforeStore($data)
{
$options = JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE;
return json_encode($data, $options);
}
}