yiche/json-to-arr-str

There is no license information available for the latest version (2.0.0) of this package.

Laravel

2.0.0 2019-08-07 12:46 UTC

This package is not auto-updated.

Last update: 2024-09-15 06:17:39 UTC


README

把 json 转化为 php 的数组字符串

示例

        $in = '{"user":{"name":"yang","age":10}}';

        $out = JsonToArrStr::main($json);
        
        you will get "['user' => ['name' => 'yang','age' => '10',],]";