version: 2.2.0
delete
Delete data from the table.
delete($table, $where)
table [string]
The table name.
where [array]
The WHERE clause to filter records.
Return: [PDOStatement] The PDOStatement object.
$database->delete("account", [
"AND" => [
"type" => "business",
"age[<]" => 18
]
]);
// The return object of delete() is PDOStatement, so you can use its methods to get more information.
$data = $database->delete("account", [
"AND" => [
"type" => "business",
"age[<]" => 18
]
]);
// Returns the number of rows affected by the last SQL statement.
echo $data->rowCount();
// Read more: http://php.net/manual/en/class.pdostatement.php