Lines Matching refs:tmp
13 $tmp = NULL;
16 if (!is_null($tmp = @mysqli_close()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_close($link, $link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
26 $tmp = @mysqli_close(NULL);
27 if (NULL !== $tmp)
28 printf("[004] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp);
30 $tmp = mysqli_close($link);
31 if (true !== $tmp)
32 printf("[005] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
34 if (false !== ($tmp = @mysqli_query($link, "SELECT 1")))
35 printf("[006] Expecting false, got %s/%s\n", gettype($tmp), $tmp);