Lines Matching refs:tmp
29 $tmp = NULL;
32 if (!is_null($tmp = @mysqli_stmt_get_warnings()))
33 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
35 if (!is_null($tmp = @mysqli_stmt_get_warnings($link)))
36 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
43 if (NULL !== ($tmp = mysqli_stmt_get_warnings($stmt)))
44 printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
49 if (false !== ($tmp = mysqli_stmt_get_warnings($stmt)))
50 printf("[006] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
55 if (false !== ($tmp = mysqli_stmt_get_warnings($stmt)))
56 printf("[008] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
92 if (NULL !== ($tmp = mysqli_stmt_get_warnings($stmt)))
93 printf("[015] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);