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 (!is_null($tmp = mysqli_stmt_field_count($stmt)))
26 printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
30 if (!is_null($tmp = mysqli_stmt_field_count($stmt)))
31 printf("[005] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
35 if (1 !== ($tmp = mysqli_stmt_field_count($stmt)))
36 printf("[007] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
40 if (2 !== ($tmp = mysqli_stmt_field_count($stmt)))
41 printf("[009] Expecting int/2, got %s/%s\n", gettype($tmp), $tmp);
45 if (2 !== ($tmp = mysqli_stmt_field_count($stmt)))
46 printf("[011] Expecting int/2, got %s/%s\n", gettype($tmp), $tmp);
51 if (1 !== ($tmp = mysqli_stmt_field_count($stmt)))
52 printf("[013] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
58 if (1 !== ($tmp = mysqli_stmt_field_count($stmt)))
59 printf("[015] Expecting int/1, got %s/%s\n", gettype($tmp), $tmp);
63 if (0 !== ($tmp = mysqli_stmt_field_count($stmt)))
64 printf("[017] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
70 if (0 !== ($tmp = mysqli_stmt_field_count($stmt)))
71 printf("[019] Expecting int/0, got %s/%s\n", gettype($tmp), $tmp);
77 if (!is_null($tmp = mysqli_stmt_field_count($stmt)))
78 printf("[011] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);