示例#1
0
 public function renderContent()
 {
     print Genghis_Json::encode($this->data);
 }
示例#2
0
文件: Api.php 项目: rozza/genghis
 protected function encodeJson($value, $gfj = true)
 {
     if ($gfj) {
         return Genghis_Json::encode($value);
     } else {
         return json_encode($value);
     }
 }