No idea which recent change has cause this little API change, however it is not a big change and maybe it is even an improvement.

This commit is contained in:
Ulf Wendel 2010-02-02 13:10:50 +00:00
parent 18f8fa7ba3
commit 7c7d7ac1fa
2 changed files with 4 additions and 4 deletions

View File

@ -14,8 +14,8 @@ require_once('skipifconnectfailure.inc');
$link = NULL;
$mysqli = new mysqli();
if (!is_null($tmp = @$mysqli->errno))
printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
if (0 !== ($tmp = @$mysqli->errno))
printf("[001] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
if (!$mysqli = new mysqli($host, $user, $passwd, $db, $port, $socket))
printf("[002] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",

View File

@ -14,8 +14,8 @@ require_once('skipifconnectfailure.inc');
$link = NULL;
$mysqli = new mysqli();
if (!is_null($tmp = @$mysqli->error))
printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
if ('' !== ($tmp = @$mysqli->error))
printf("[001] Expecting empty string, got %s/'%s'\n", gettype($tmp), $tmp);
if (!$mysqli = new mysqli($host, $user, $passwd, $db, $port, $socket))
printf("[002] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",