Lines Matching refs:tmp

13 $tmp    = NULL;
16 if (0 !== ($tmp = @mysql_affected_rows()))
17 printf("[001] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
19 if (null !== ($tmp = @mysql_affected_rows($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
22 if (!is_null($tmp = @mysql_affected_rows($link, $link)))
23 printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
29 if (-1 !== ($tmp = mysql_affected_rows($link)))
31 gettype($tmp), $tmp, mysql_errno($link), mysql_error($link));
42 if (1 !== ($tmp = mysql_affected_rows($link)))
43 printf("[010] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
47 if (-1 !== ($tmp = mysql_affected_rows($link)))
48 printf("[011] Expecting int/-1, got %s/%s\n", gettype($tmp), $tmp);
53 if (2 !== ($tmp = mysql_affected_rows($link)))
54 printf("[013] Expecting int/2, got %s/%s\n", gettype($tmp), $tmp);
59 if (2 !== ($tmp = mysql_affected_rows($link)))
60 printf("[015] Expecting int/2, got %s/%s\n", gettype($tmp), $tmp);
66 if (1 !== ($tmp = mysql_affected_rows($link)))
67 printf("[017] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
72 if (4 !== ($tmp = mysql_affected_rows($link)))
73 printf("[019] Expecting int/4, got %s/%s\n", gettype($tmp), $tmp);
78 if (2 !== ($tmp = mysql_affected_rows($link)))
79 printf("[021] Expecting int/2, got %s/%s\n", gettype($tmp), $tmp);
84 if (1 !== ($tmp = mysql_affected_rows($link)))
85 printf("[023] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
90 if (1 !== ($tmp = mysql_affected_rows($link)))
91 printf("[025] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
97 if (0 !== ($tmp = mysql_affected_rows($link)))
98 printf("[026] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
104 if (0 !== ($tmp = mysql_affected_rows($link)))
105 printf("[026] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
107 if (0 !== ($tmp = mysql_affected_rows()))
108 printf("[027] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
115 if (false !== ($tmp = @mysql_affected_rows($link)))
116 printf("[029] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);