Lines Matching refs:tmp
13 $tmp = NULL;
16 if (!is_null($tmp = @mysqli_num_rows()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_num_rows($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
31 if ($expected !== ($tmp = mysqli_num_rows($res)))
34 gettype($tmp), $tmp);
38 if ($test_free && (NULL !== ($tmp = mysqli_num_rows($res))))
39 printf("[%03d] Expecting NULL, got %s/%s\n", $offset + 2, gettype($tmp), $tmp);
64 if (0 !== ($tmp = mysqli_num_rows($res)))
65 printf("[031] Expecting int/0, got %s/%d\n", gettype($tmp), $tmp);