missing-u/json-to-arr-str

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

Laravel

Installs: 30

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/missing-u/json-to-arr-str

3.0.0 2019-08-22 02:04 UTC

This package is auto-updated.

Last update: 2025-10-22 15:02:02 UTC


README

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

示例

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

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