Lines Matching refs:tmp

13 	$tmp    = NULL;
16 if (!is_null($tmp = @mysqli_stmt_bind_result()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_stmt_bind_result($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
28 if (!is_null($tmp = mysqli_stmt_bind_result($stmt)))
29 printf("[002b] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
38 if (!is_null($tmp = mysqli_stmt_bind_result($stmt, $id)))
39 printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
44 if (false !== ($tmp = mysqli_stmt_bind_result($stmt, $id)))
45 printf("[005] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
47 if (true !== ($tmp = mysqli_stmt_bind_result($stmt, $id, $label)))
48 printf("[006] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
50 if (false !== ($tmp = mysqli_stmt_bind_result($stmt, $id, $label, $foo)))
51 printf("[007] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
210 $tmp = strval('-99999999.99');
211 func_mysqli_stmt_bind_result($link, $engine, "d", "DOUBLE(10,2)", $tmp, 680, "string");
213 $tmp = strval('99999999.99');
214 func_mysqli_stmt_bind_result($link, $engine, "d", "DOUBLE(10,2) UNSIGNED", $tmp , 720, "string");
216 $tmp = strval('-99999999.99');
217 func_mysqli_stmt_bind_result($link, $engine, "d", "DECIMAL(10,2)", $tmp, 760, "string");
219 $tmp = strval('99999999.99');
220 func_mysqli_stmt_bind_result($link, $engine, "d", "DECIMAL(10,2)", $tmp, 800, "string");
238 $tmp = intval(@date('Y'));
239 func_mysqli_stmt_bind_result($link, $engine, "s", "YEAR", $tmp, 1040, "integer");
240 func_mysqli_stmt_bind_result($link, $engine, "s", "YEAR NOT NULL", $tmp, 1060, "integer");
300 if (!is_null($tmp = @mysqli_stmt_bind_result()))
301 printf("[3000] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);