mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
1) Whitespace/CS
2) One line added to test default connection
This commit is contained in:
parent
78628dad2a
commit
da36f2be2a
1 changed files with 30 additions and 27 deletions
|
@ -22,9 +22,11 @@ mysql_ping()
|
|||
printf("[002] Statement should have caused an error\n");
|
||||
|
||||
var_dump(mysql_ping($link));
|
||||
|
||||
if ($errno === mysql_errno($link))
|
||||
printf("[003] Error codes should have been reset\n");
|
||||
|
||||
var_dump(mysql_ping());
|
||||
mysql_close($link);
|
||||
|
||||
if (false !== ($tmp = mysql_ping($link)))
|
||||
|
@ -35,6 +37,7 @@ mysql_ping()
|
|||
--EXPECTF--
|
||||
bool(true)
|
||||
bool(true)
|
||||
bool(true)
|
||||
|
||||
Warning: mysql_ping(): %d is not a valid MySQL-Link resource in %s on line %d
|
||||
done!
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue