|
PDOStatement::executeExecutes a prepared statement Beschreibung
public bool PDOStatement::execute
([ array
$input_parameters
] )Execute the prepared statement. If the prepared statement included parameter markers, either:
Parameter-Liste
Rückgabewerte
Gibt bei Erfolg Changelog
BeispieleBeispiel #1 Execute a prepared statement with a bound variable and value
<?phpBeispiel #2 Execute a prepared statement with an array of insert values (named parameters)
<?phpBeispiel #3 Execute a prepared statement with an array of insert values (placeholders)
<?phpBeispiel #4 Execute a prepared statement with question mark placeholders
<?phpBeispiel #5 Execute a prepared statement using array for IN clause
<?phpAnmerkungen
Siehe auch
|