Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Rufen Sie die Anzahl der Zeilen ab, die mit der UPDATE-Abfrage mit PHP mysqli übereinstimmen

Ich habe den folgenden Code verwendet:

// Parse the digits from the info string that has the following format:
// Rows matched: 0 Changed: 0 Warnings: 0
preg_match_all('!\d+!', $mysqli->info, $m);
return $m[0][0];