1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-22 19:44:02 +08:00
2020-04-20 19:21:29 +08:00

22 lines
409 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 | JSON_PRESERVE_ZERO_FRACTION;
return json_encode($data, $options);
}
}