コード例 #1
0
 public function load($resource, $type = null)
 {
     $data = $this->loadFile($resource);
     return Json::parse($data, true);
 }
コード例 #2
0
ファイル: Model.php プロジェクト: Macavity/phormium
 /**
  * Returns the model's JSON representation.
  *
  * @return string
  */
 public function toJSON()
 {
     return Json::dump($this);
 }