|
mysqli::killmysqli_killAsks the server to kill a MySQL thread DescriptionObject oriented style
bool mysqli::kill
( int
$processid
)Procedural style
bool mysqli_kill
( mysqli
$link
, int $processid
)
This function is used to ask the server to kill a MySQL thread specified
by the To stop a running query you should use the SQL command KILL QUERY processid. Parameters
Return Values
Returns ExamplesExample #1 mysqli::kill example Object oriented style
<?php Procedural style
<?php The above examples will output: Error: MySQL server has gone away See Also
|