| 
 
update : 2015.11.03
 
php.shukuma.com검색:
  
 | 
MysqlndUhConnection::storeResult(PECL mysqlnd-uh >= 1.0.0-alpha) MysqlndUhConnection::storeResult — Transfers a result set from the last query 설명
   public resource MysqlndUhConnection::storeResult
    ( mysqlnd_connection  
  $connection
   )Transfers a result set from the last query. 인수
 반환값Resource of type Mysqlnd Resultset (internal only - you must not modify it!). The documentation may also refer to such resources using the alias name mysqlnd_resultset. 예제
 Example #1 MysqlndUhConnection::storeResult() example 
<?php위 예제의 출력: 
proxy::storeResult(array (
  0 => NULL,
))
proxy::storeResult returns NULL
resource(475) of type (Mysqlnd Resultset (internal only - you must not modify it!))
array(1) {
  ["_msg"]=>
  string(27) "Also called buffered result"
}
proxy::storeResult(array (
  0 => NULL,
))
proxy::storeResult returns NULL
resource(730) of type (Mysqlnd Resultset (internal only - you must not modify it!))
array(1) {
  ["_msg"]=>
  string(13) "Good morning!"
}
참고
 
  |