示例#1
0
 /**
  * @return string
  */
 public function toString()
 {
     return $this->holder->getContent();
 }
示例#2
0
文件: JsonData.php 项目: weew/http
 /**
  * @return array
  */
 public function getData()
 {
     $data = $this->getJsonEncoder()->decode($this->holder->getContent());
     return $data !== null ? $data : [];
 }