Lines Matching refs:tmp
13 $tmp = NULL;
16 if (!is_null($tmp = @mysqli_stmt_field_count()))
17 printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
19 if (!is_null($tmp = @mysqli_stmt_field_count($link)))
20 printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
25 if (false !== ($tmp = mysqli_stmt_field_count($stmt)))
26 printf("[003] Expecting false, got %s/%s\n", gettype($tmp), $tmp);
31 if (false !== ($tmp = mysqli_stmt_field_count($stmt)))
32 printf("[005] Expecting false, got %s/%s\n", gettype($tmp), $tmp);
36 if (1 !== ($tmp = mysqli_stmt_field_count($stmt)))
37 printf("[007] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
41 if (2 !== ($tmp = mysqli_stmt_field_count($stmt)))
42 printf("[009] Expecting int/2, got %s/%s\n", gettype($tmp), $tmp);
46 if (2 !== ($tmp = mysqli_stmt_field_count($stmt)))
47 printf("[011] Expecting int/2, got %s/%s\n", gettype($tmp), $tmp);
52 if (1 !== ($tmp = mysqli_stmt_field_count($stmt)))
53 printf("[013] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
59 if (1 !== ($tmp = mysqli_stmt_field_count($stmt)))
60 printf("[015] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
64 if (0 !== ($tmp = mysqli_stmt_field_count($stmt)))
65 printf("[017] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
71 if (0 !== ($tmp = mysqli_stmt_field_count($stmt)))
72 printf("[019] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
79 if (false !== ($tmp = mysqli_stmt_field_count($stmt)))
80 printf("[021] Expecting false, got %s/%s\n", gettype($tmp), $tmp);