Lines Matching refs:tmp
13 $tmp = NULL;
16 if (!is_null($tmp = @mysqli_stmt_error()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_stmt_error($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
28 if ('' !== ($tmp = mysqli_stmt_error($stmt)))
29 printf("[004] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
35 if ('' === ($tmp = mysqli_stmt_error($stmt)))
36 printf("[006] Expecting string/any non empty, got %s/%s\n", gettype($tmp), $tmp);
42 if ('' !== ($tmp = mysqli_stmt_error($stmt)))
43 printf("[008] Expecting empty string, got %s/%s\n", gettype($tmp), $tmp);
47 if (true === ($tmp = mysqli_stmt_execute($stmt)))
48 printf("[009] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
51 if ('' === ($tmp = mysqli_stmt_error($stmt)))
52 printf("[010] Execting string/any non empty, got %s/%s\n", gettype($tmp), $tmp);
56 if (false !== ($tmp = mysqli_stmt_error($stmt)))
57 printf("[011] Expecting false, got %s/%s\n", gettype($tmp), $tmp);