Lines Matching refs:tmp
13 $tmp = NULL;
16 if (!is_null($tmp = @mysqli_stat()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_stat($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
24 if (!is_null($tmp = @mysqli_stat($link, "foo")))
25 printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
27 if ((!is_string($tmp = mysqli_stat($link))) || ('' === $tmp))
29 gettype($tmp), $tmp, mysqli_errno($link), mysql_error($link));
33 if (!is_null($tmp = mysqli_stat($link)))
34 printf("[005] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);