Lines Matching refs:tmp

13 	$tmp    = NULL;
16 if (!is_null($tmp = @mysqli_affected_rows()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_affected_rows($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
22 if (!is_null($tmp = @mysqli_affected_rows($link, $link)))
23 printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
29 if (0 !== ($tmp = mysqli_affected_rows($link)))
31 gettype($tmp), $tmp, mysqli_errno($link), mysqli_error($link));
42 if (1 !== ($tmp = mysqli_affected_rows($link)))
43 printf("[010] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
47 if (-1 !== ($tmp = mysqli_affected_rows($link)))
48 printf("[011] Expecting int/-1, got %s/%s\n", gettype($tmp), $tmp);
53 if (2 !== ($tmp = mysqli_affected_rows($link)))
54 printf("[013] Expecting int/2, got %s/%s\n", gettype($tmp), $tmp);
59 if (2 !== ($tmp = mysqli_affected_rows($link)))
60 printf("[015] Expecting int/2, got %s/%s\n", gettype($tmp), $tmp);
66 if (1 !== ($tmp = mysqli_affected_rows($link)))
67 printf("[017] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
72 if (4 !== ($tmp = mysqli_affected_rows($link)))
73 printf("[019] Expecting int/4, got %s/%s\n", gettype($tmp), $tmp);
78 if (2 !== ($tmp = mysqli_affected_rows($link)))
79 printf("[021] Expecting int/2, got %s/%s\n", gettype($tmp), $tmp);
84 if (1 !== ($tmp = mysqli_affected_rows($link)))
85 printf("[023] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
90 if (1 !== ($tmp = mysqli_affected_rows($link)))
91 printf("[025] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
98 if (true !== ($tmp = mysqli_set_charset($link, $charset)))
100 gettype($tmp), $tmp);
101 if (0 !== ($tmp = mysqli_affected_rows($link)))
102 printf("[027] Expecting int/0 got %s/%s\n", gettype($tmp), $tmp);
109 if (0 !== ($tmp = mysqli_affected_rows($link)))
110 printf("[029] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
116 if (0 !== ($tmp = mysqli_affected_rows($link)))
117 printf("[031] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
125 if (NULL !== ($tmp = @mysqli_affected_rows($link)))
126 printf("[033] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);