Lines Matching refs:tmp

22 	$tmp    = NULL;
25 if (!is_null($tmp = @mysqli_stmt_bind_param()))
26 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
28 if (!is_null($tmp = @mysqli_stmt_bind_param($link)))
29 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
31 if (!is_null($tmp = @mysqli_stmt_bind_param($link, $link)))
32 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
47 if (!false === ($tmp = @mysqli_stmt_bind_param($stmt, " ", $tmp)))
48 printf("[003d] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
50 if (!false === ($tmp = @mysqli_stmt_bind_param($stmt, "", $id, $label)))
51 printf("[003a] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
55 if (!false === ($tmp = mysqli_stmt_bind_param($stmt, "is", $param)))
56 printf("[003b] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
59 if (!false === ($tmp = mysqli_stmt_bind_param($stmt, "is", $param)))
60 printf("[003c] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
62 if (!false === ($tmp = mysqli_stmt_bind_param($stmt, "a", $id)))
63 printf("[004] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
65 if (!false === ($tmp = mysqli_stmt_bind_param($stmt, "a", $id, $label)))
66 printf("[005] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
68 if (!false === ($tmp = mysqli_stmt_bind_param($stmt, "aa", $id, $label)))
69 printf("[006] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
71 if (!false === ($tmp = mysqli_stmt_bind_param($stmt, "ia", $id, $label)))
72 printf("[007] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
74 if (!true === ($tmp = mysqli_stmt_bind_param($stmt, "is", $id, $label)))
75 printf("[008] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
80 if (!true === ($tmp = mysqli_stmt_bind_param($stmt, "is", $id, $label)))
81 printf("[008][$i] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
83 if (($tmp = (memory_get_usage() - $mem)) > 600)
84 …unction seems to be leaking, because it used %d bytes. During tests it used only 92 bytes.", $tmp);
316 if (true !== ($tmp = mysqli_stmt_bind_param($stmt, "is", $id, $label)))
321 if (true !== ($tmp = mysqli_stmt_bind_param($stmt, "is", $id, $label)))
334 if (true !== ($tmp = $stmt->bind_param('is', $id, $label)))
336 gettype($tmp), $tmp,
384 if (!is_null($tmp = @mysqli_stmt_bind_param()))
385 printf("[021] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);