Lines Matching refs:tmp
13 $tmp = NULL;
16 if (NULL !== ($tmp = @mysqli_data_seek()))
17 printf("[001] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (NULL !== ($tmp = @mysqli_data_seek($link)))
20 printf("[002] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp);
22 if (NULL !== ($tmp = @mysqli_data_seek($link, $link)))
23 printf("[003] Expecting NULL/NULL, got %s/%s\n", gettype($tmp), $tmp);
29 if (true !== ($tmp = mysqli_data_seek($res, 3)))
30 printf("[005] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
36 if (true !== ($tmp = mysqli_data_seek($res, 0)))
37 printf("[007] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
43 if (false !== ($tmp = mysqli_data_seek($res, 4)))
44 printf("[009] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
46 if (false !== ($tmp = mysqli_data_seek($res, -1)))
47 printf("[010] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
54 if (false !== ($tmp = mysqli_data_seek($res, 3)))
55 printf("[012] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
59 if (NULL !== ($tmp = mysqli_data_seek($res, 1)))
60 printf("[013] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);