예제 #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);
 }