Lines Matching refs:tmp
19 $tmp = NULL;
22 if (!is_null($tmp = @mysqli_stmt_reset()))
23 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
25 if (!is_null($tmp = @mysqli_stmt_reset($link)))
26 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
33 if (NULL !== ($tmp = mysqli_stmt_reset($stmt)))
34 printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
36 if (true !== ($tmp = mysqli_stmt_prepare($stmt, 'SELECT id FROM test')))
38 gettype($tmp), $tmp, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
40 if (true !== ($tmp = mysqli_stmt_reset($stmt)))
41 printf("[006] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
43 if (true !== ($tmp = mysqli_stmt_execute($stmt)))
44 printf("[007] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
96 if (NULL !== ($tmp = mysqli_stmt_reset($stmt)))