jingcai-php/app/Model/Traits/TableFieldTrait.php

17 lines
235 B
PHP
Executable File

<?php
namespace App\Model\Traits;
trait TableFieldTrait
{
/**
* @param $value
* @return false|string
*/
public function asJson($value)
{
return json_encode($value, JSON_UNESCAPED_UNICODE);
}
}