Lines Matching refs:tmp

15 	$tmp    = NULL;
18 if (!is_null($tmp = @mysqli_stmt_bind_result()))
19 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
21 if (!is_null($tmp = @mysqli_stmt_bind_result($link)))
22 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
30 if (!is_null($tmp = @mysqli_stmt_bind_result($stmt)))
31 printf("[002b] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
40 if (!is_null($tmp = mysqli_stmt_bind_result($stmt)))
41 printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
46 if (false !== ($tmp = mysqli_stmt_bind_result($stmt, $id)))
47 printf("[005] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
49 if (true !== ($tmp = mysqli_stmt_bind_result($stmt, $id, $label)))
50 printf("[006] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
52 if (false !== ($tmp = mysqli_stmt_bind_result($stmt, $id, $label, $foo)))
53 printf("[007] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
212 $tmp = strval('-99999999.99');
213 func_mysqli_stmt_bind_result($link, $engine, "d", "DOUBLE(10,2)", $tmp, 680, "string");
215 $tmp = strval('99999999.99');
216 func_mysqli_stmt_bind_result($link, $engine, "d", "DOUBLE(10,2) UNSIGNED", $tmp , 720, "string");
218 $tmp = strval('-99999999.99');
219 func_mysqli_stmt_bind_result($link, $engine, "d", "DECIMAL(10,2)", $tmp, 760, "string");
221 $tmp = strval('99999999.99');
222 func_mysqli_stmt_bind_result($link, $engine, "d", "DECIMAL(10,2)", $tmp, 800, "string");
240 $tmp = intval(@date('Y'));
241 func_mysqli_stmt_bind_result($link, $engine, "s", "YEAR", $tmp, 1040, "integer");
242 func_mysqli_stmt_bind_result($link, $engine, "s", "YEAR NOT NULL", $tmp, 1060, "integer");
302 if (!is_null($tmp = @mysqli_stmt_bind_result()))
303 printf("[3000] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);