コード例 #1
0
ファイル: JsonFile.php プロジェクト: edde-framework/edde
 public function read()
 {
     if (($read = parent::read()) === false) {
         return false;
     }
     return JsonUtils::decode($read, JsonUtils::FORCE_ARRAY);
 }
コード例 #2
0
 public function output($value)
 {
     return JsonUtils::decode($value, JsonUtils::FORCE_ARRAY);
 }