©
This document uses PHP Chinese website manual Release
(PHP 5)
代表一个prepared语句。
$stmt
)$attr
)$attr
, int $mode
)$types
, mixed &$var1
[, mixed &$...
] )&$var1
[, mixed &$...
] )$offset
)$stmt
)$stmt
)$stmt
)$stmt
)$stmt
)$stmt
)$stmt
)$stmt
)$query
)$param_nr
, string $data
)$stmt
)[#1] anonunfinder at gmail dot com [2013-12-20 11:35:44]
<?php
class MySQL
{
protected $mysql;
function __construct()
{
//Get MySQL config values from config.ini file
if($config = parse_ini_file("../config.ini"))
{
// Obtener los valores del fichero de configuraci??n config.ini
$ip = $config["ip"];
$user = $config["usuario"];
$pass = $config["password"];
$bd = $config["bd"];
//Connection between a database and php
$this->mysql = new mysqli($ip, $user, $pass, $bd);
}
}
function setResultQuery($query, $param)
{
$array = NULL;
if(!$this->mysql->connect_errno)
{
$stmt = $this->setStatement($query, $param);
try
{
if($stmt != NULL)
{
if($stmt->execute())
{
//Obtener resultados
$stmt->store_result();
$variables = array();
$data = array();
$meta = $stmt->result_metadata();
while($field = $meta->fetch_field())
{
$variables[] = &$data[$field->name];
}
call_user_func_array(array($stmt, 'bind_result'), $variables);
$i=0;
while($stmt->fetch())
{
$array[$i] = array();
foreach($data as $k=>$v)
$array[$i][$k] = $v;
$i++;
}
$stmt->close();
}
}
}catch(Exception $e){
$array = FALSE;
}
}
return $array;
}
function setStatement($query, $param)
{
try
{
$stmt = $this->mysql->prepare($query);
$ref = new ReflectionClass('mysqli_stmt');
if(count($param) != 0)
{
$method = $ref->getMethod('bind_param');
$method->invokeArgs($stmt, $param);
}
}catch(Exception $e){
if($stmt != null)
{
$stmt->close();
}
}
return $stmt;
}
function setNoResultQuery($query, $param)
{
$validation = FALSE;
if(!$this->mysql->connect_errno)
{
try
{
$stmt = $this->setStatement($query, $param);
if($stmt != null)
{
if($stmt->execute())
{
$stmt->close();
$validacion = TRUE;
}
}
}catch(Exception $e){
$validation = FALSE;
}
}
return $validation;
}
function __destruct()
{
$this->mysql->close();
}
}
?>
[#2] krapfi at gmail dot com [2008-05-20 06:35:52]
The prototype of the mysqli_stmt constructor is mysqli_stmt::__construct(mysqli $link, $query);
To extend mysqli_stmt, do
class myStmt extends mysqli_stmt {
public function __construct($link, $query) {
parent::__construct($link, $query);
}
}
class myI extends mysqli {
public function prepare($query) {
return new myStmt($this, $query);
}
}
http://blog.myhat.de/2007/06/26/pdo-and-extending-mysqli/ has further infos including how to extend mysqli_result