示例#1
0
文件: Arrayy.php 项目: voku/Arrayy
 /**
  * Create an new Arrayy object via JSON.
  *
  * @param string $json
  *
  * @return Arrayy (Immutable) Returns an new instance of the Arrayy object.
  */
 public static function createFromJson($json)
 {
     $array = UTF8::json_decode($json, true);
     return static::create($array);
 }