Lines Matching refs:tmp
13 $tmp = NULL;
16 if (!is_null($tmp = @mysqli_warning_count()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_warning_count($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
24 if (NULL !== ($tmp = @mysqli_warning_count($link, "too_many")))
25 printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
30 if (0 !== ($tmp = mysqli_warning_count($link)))
31 printf("[005] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
36 if (1 !== ($tmp = mysqli_warning_count($link)))
37 printf("[007] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
41 if (false !== ($tmp = mysqli_warning_count($link)))
42 printf("[010] Expecting false, got %s/%s\n", gettype($tmp), $tmp);