(PECL mysqlnd-uh >= 1.0.0-alpha)
MysqlndUhPreparedStatement::execute — Exécute une requête préparée
$statement
)Exécute une requête préparée.
statement
Gestionnaire de requête préparée Mysqlnd. Ne pas modifier ! Ressource de type Mysqlnd Prepared Statement (internal only - you must not modify it!).
Retourne TRUE
en cas de succès, FALSE
sinon.
Exemple #1 Exemple avec MysqlndUhPreparedStatement::execute()
<?php
class stmt_proxy extends MysqlndUhPreparedStatement {
public function execute($res) {
printf("%s(", __METHOD__);
var_dump($res);
printf(")\n");
$ret = parent::execute($res);
printf("%s retourne %s\n", __METHOD__, var_export($ret, true));
var_dump($ret);
return $ret;
}
}
mysqlnd_uh_set_statement_proxy(new stmt_proxy());
$mysqli = new mysqli("localhost", "root", "", "test");
$stmt = $mysqli->prepare("SELECT 'Labskaus' AS _msg FROM DUAL");
$stmt->execute();
$msg = NULL;
$stmt->bind_result($msg);
$stmt->fetch();
var_dump($msg);
?>
L'exemple ci-dessus va afficher :
stmt_proxy::execute(resource(256) of type (Mysqlnd Prepared Statement (internal only - you must not modify it!)) ) stmt_proxy::execute retourne true bool(true) string(8) "Labskaus"