mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
45 lines
No EOL
1.2 KiB
PHP
45 lines
No EOL
1.2 KiB
PHP
--TEST--
|
|
mysql_errno()
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
<?php require_once('skipifemb.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
include "connect.inc";
|
|
|
|
$tmp = NULL;
|
|
$link = NULL;
|
|
|
|
if (false !== ($tmp = @mysql_errno()))
|
|
printf("[001] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
|
|
|
|
if (false !== ($tmp = @mysql_errno($link)))
|
|
printf("[002] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
|
|
|
|
if (!$link = my_mysql_connect($host, $user, $passwd, $db, $port, $socket)) {
|
|
printf("[003] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
|
|
$host, $user, $db, $port, $socket);
|
|
}
|
|
|
|
var_dump(mysql_errno($link));
|
|
|
|
if (!mysql_query('DROP TABLE IF EXISTS test', $link)) {
|
|
printf("[004] Failed to drop old test table: [%d] %s\n", mysql_errno($link), mysql_errno($link));
|
|
}
|
|
|
|
mysql_query('SELECT * FROM test', $link);
|
|
var_dump(mysql_errno($link));
|
|
|
|
mysql_close($link);
|
|
|
|
var_dump(mysql_errno($link));
|
|
|
|
print "done!";
|
|
?>
|
|
--EXPECTF--
|
|
int(0)
|
|
int(%d)
|
|
|
|
Warning: mysql_errno(): %d is not a valid MySQL-Link resource in %s on line %d
|
|
bool(false)
|
|
done!
|