mysqli_stmt::execute

mysqli_stmt_execute

(PHP 5, PHP 7, PHP 8)

mysqli_stmt::execute -- mysqli_stmt_executeExecutes a prepared statement

Beschreibung

Objektorientierter Stil

public mysqli_stmt::execute(?array $params = null): bool

Prozeduraler Stil

mysqli_stmt_execute(mysqli_stmt $statement, ?array $params = null): bool

Executes previously prepared statement. The statement must be successfully prepared prior to execution, using either the mysqli_prepare() or mysqli_stmt_prepare() function, or by passing the second argument to mysqli_stmt::__construct().

If the statement is UPDATE, DELETE, or INSERT, the total number of affected rows can be determined by using the mysqli_stmt_affected_rows() function. If the query yields a result set, it can be fetched using mysqli_stmt_get_result() function or by fetching it row by row directly from the statement using mysqli_stmt_fetch() function.

Parameter-Liste

statement

Nur bei prozeduralem Aufruf: ein von mysqli_stmt_init() zurückgegebenes mysqli_stmt-Objekt.

params

An optional list Array with as many elements as there are bound parameters in the SQL statement being executed. Each value is treated as a String.

Rückgabewerte

Gibt bei Erfolg true zurück. Bei einem Fehler wird false zurückgegeben.

Changelog

Version Beschreibung
8.1.0 The optional params parameter has been added.

Beispiele

Beispiel #1 Execute a prepared statement with bound variables

Objektorientierter Stil

<?php

mysqli_report
(MYSQLI_REPORT_ERROR MYSQLI_REPORT_STRICT);
$mysqli = new mysqli("localhost""my_user""my_password""world");

$mysqli->query("CREATE TEMPORARY TABLE myCity LIKE City");

/* Prepare an insert statement */
$stmt $mysqli->prepare("INSERT INTO myCity (Name, CountryCode, District) VALUES (?,?,?)");

/* Bind variables to parameters */
$stmt->bind_param("sss"$val1$val2$val3);

$val1 'Stuttgart';
$val2 'DEU';
$val3 'Baden-Wuerttemberg';

/* Execute the statement */
$stmt->execute();

$val1 'Bordeaux';
$val2 'FRA';
$val3 'Aquitaine';

/* Execute the statement */
$stmt->execute();

/* Retrieve all rows from myCity */
$query "SELECT Name, CountryCode, District FROM myCity";
$result $mysqli->query($query);
while (
$row $result->fetch_row()) {
    
printf("%s (%s,%s)\n"$row[0], $row[1], $row[2]);
}

Prozeduraler Stil

<?php

mysqli_report
(MYSQLI_REPORT_ERROR MYSQLI_REPORT_STRICT);
$link mysqli_connect("localhost""my_user""my_password""world");

mysqli_query($link"CREATE TEMPORARY TABLE myCity LIKE City");

/* Prepare an insert statement */
$stmt mysqli_prepare($link"INSERT INTO myCity (Name, CountryCode, District) VALUES (?,?,?)");

/* Bind variables to parameters */
mysqli_stmt_bind_param($stmt"sss"$val1$val2$val3);

$val1 'Stuttgart';
$val2 'DEU';
$val3 'Baden-Wuerttemberg';

/* Execute the statement */
mysqli_stmt_execute($stmt);

$val1 'Bordeaux';
$val2 'FRA';
$val3 'Aquitaine';

/* Execute the statement */
mysqli_stmt_execute($stmt);

/* Retrieve all rows from myCity */
$query "SELECT Name, CountryCode, District FROM myCity";
$result mysqli_query($link$query);
while (
$row mysqli_fetch_row($result)) {
    
printf("%s (%s,%s)\n"$row[0], $row[1], $row[2]);
}

Die obigen Bespiele erzeugen folgende Ausgabe:

Stuttgart (DEU,Baden-Wuerttemberg)
Bordeaux (FRA,Aquitaine)

Beispiel #2 Execute a prepared statement with an array of values

Objektorientierter Stil

<?php

mysqli_report
(MYSQLI_REPORT_ERROR MYSQLI_REPORT_STRICT);
$mysqli = new mysqli('localhost''my_user''my_password''world');

$mysqli->query('CREATE TEMPORARY TABLE myCity LIKE City');

/* Prepare an insert statement */
$stmt $mysqli->prepare('INSERT INTO myCity (Name, CountryCode, District) VALUES (?,?,?)');

/* Execute the statement */
$stmt->execute(['Stuttgart''DEU''Baden-Wuerttemberg']);

/* Retrieve all rows from myCity */
$query 'SELECT Name, CountryCode, District FROM myCity';
$result $mysqli->query($query);
while (
$row $result->fetch_row()) {
    
printf("%s (%s,%s)\n"$row[0], $row[1], $row[2]);
}

Prozeduraler Stil

<?php

mysqli_report
(MYSQLI_REPORT_ERROR MYSQLI_REPORT_STRICT);
$link mysqli_connect('localhost''my_user''my_password''world');

mysqli_query($link'CREATE TEMPORARY TABLE myCity LIKE City');

/* Prepare an insert statement */
$stmt mysqli_prepare($link'INSERT INTO myCity (Name, CountryCode, District) VALUES (?,?,?)');

/* Execute the statement */
mysqli_stmt_execute($stmt, ['Stuttgart''DEU''Baden-Wuerttemberg']);

/* Retrieve all rows from myCity */
$query 'SELECT Name, CountryCode, District FROM myCity';
$result mysqli_query($link$query);
while (
$row mysqli_fetch_row($result)) {
    
printf("%s (%s,%s)\n"$row[0], $row[1], $row[2]);
}

Die obigen Bespiele erzeugen folgende Ausgabe:

Stuttgart (DEU,Baden-Wuerttemberg)

Siehe auch

Hier Kannst Du einen Kommentar verfassen


Bitte gib mindestens 10 Zeichen ein.
Wird geladen... Bitte warte.
* Pflichtangabe
Es sind noch keine Kommentare vorhanden.

PHP cURL-Tutorial: Verwendung von cURL zum Durchführen von HTTP-Anfragen

cURL ist eine leistungsstarke PHP-Erweiterung, die es Ihnen ermöglicht, mit verschiedenen Servern über verschiedene Protokolle wie HTTP, HTTPS, FTP und mehr zu kommunizieren. ...

TheMax

Autor : TheMax
Kategorie: PHP-Tutorials

Midjourney Tutorial - Anleitung für Anfänger

Über Midjourney, dem Tool zur Erstellung digitaler Bilder mithilfe von künstlicher Intelligenz, gibt es ein informatives Video mit dem Titel "Midjourney Tutorial auf Deutsch - Anleitung für Anfänger" ...

Mike94

Autor : Mike94
Kategorie: KI Tutorials

Grundlagen von Views in MySQL

Views in einer MySQL-Datenbank bieten die Möglichkeit, eine virtuelle Tabelle basierend auf dem Ergebnis einer SQL-Abfrage zu erstellen. ...

admin

Autor : admin
Kategorie: mySQL-Tutorials

Tutorial veröffentlichen

Tutorial veröffentlichen

Teile Dein Wissen mit anderen Entwicklern weltweit

Du bist Profi in deinem Bereich und möchtest dein Wissen teilen, dann melde dich jetzt an und teile es mit unserer PHP-Community

mehr erfahren

Tutorial veröffentlichen

Google reCAPTCHA in Kontaktformular einbinden

Hallo zusammen, vielen Dank für die Antworten Mein Beitrag sechs Jahre alt.Die Webseite existiert nicht einmal mehr. Ich freue mich aber, dass m ...

Geschrieben von BWAT am 21.02.2025 11:21:30
Forum: PHP Developer Forum
Google reCAPTCHA in Kontaktformular einbinden

Hallo, bei einer alten Webseite, die ich noch bis Ende des Jahres betreue, muss ich ein reCaptcha einbauen, damit der Hoster aufgrund von Spam die ...

Geschrieben von Olivia am 21.02.2025 11:13:40
Forum: PHP Developer Forum
mit json Btc adresse auslesen

No-Deposit-Boni bieten großartige Chancen, besonders für Anfänger, die das Casino ohne Risiko ausprobieren möchten. Es ist jedoch wichtig, die ...

Geschrieben von DannieDenesik am 20.02.2025 08:09:41
Forum: Apps und PHP Script Gesuche
How to overcome Safari's iframe cookie block?

A good way to bypass Safari’s iframe cookie block is to use Storage Access API. This allows embedded iframes to request access to cookies by pro ...

Geschrieben von mohrceleste am 20.02.2025 05:17:31
Forum: HTML, JavaScript, AJAX, jQuery, CSS, Bootstrap, LESS