Files
OMS/app/base/lib/setup/compat/json_decode.txt
2025-12-28 23:13:25 +08:00

7 lines
186 B
Plaintext

if(!function_exists('json_decode')){
function json_decode($value, $bool=false)
{
return kernel::single('base_compat_json')->decode($value, $bool);
}//End Function
}