예제 #1
0
파일: Mysql.php 프로젝트: myersguo/phpio
 function postCallback($jp)
 {
     $this->trace['link'] = $this->link;
     if ($this->result === false) {
         $this->trace['errno'] = mysql_errno();
         $this->trace['error'] = mysql_error();
     }
     parent::postCallback($jp);
 }
예제 #2
0
파일: Curl.php 프로젝트: myersguo/phpio
 function curl_exec_post($jp)
 {
     $ch = $this->args[0];
     $this->getinfo($ch);
     parent::postCallback($jp);
 }
예제 #3
0
파일: Network.php 프로젝트: myersguo/phpio
 function postCallback($jp)
 {
     $this->trace['link'] = $this->link;
     $this->trace['cmd'] = is_array($this->args[0]) ? implode(' ', $this->args[0]) : $this->args[0];
     parent::postCallback($jp);
 }