Home
last modified time | relevance | path

Searched refs:res (Results 326 – 350 of 570) sorted by relevance

1...<<11121314151617181920>>...23

/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_poll_kill.phpt48 if (is_object($res = mysqli_reap_async_query($link))) {
50 var_dump(mysqli_fetch_assoc($res));
51 mysqli_free_result($res);
120 if (is_object($res = mysqli_reap_async_query($mysqli))) {
122 var_dump(mysqli_fetch_assoc($res));
153 if (is_object($res = mysqli_reap_async_query($link))) {
155 var_dump(mysqli_fetch_assoc($res));
156 mysqli_free_result($res);
H A Dbug45019.phpt16 …if (!($res = $link->query("SELECT CAST('one' AS CHAR) AS column1 UNION SELECT CAST('three' AS CHAR…
20 while ($row = $res->fetch_assoc()) {
24 $res->free();
H A Dmysqli_change_user_insert_id.phpt43 if (!$res = mysqli_query($link, 'SELECT LAST_INSERT_ID() as _insert_id'))
46 if (!$row = mysqli_fetch_assoc($res))
48 mysqli_free_result($res);
H A Dmysqli_real_escape_string_nobackslash.phpt40 if (!($res = mysqli_query($link, 'SELECT label FROM test WHERE id = 100')) ||
41 !($row = mysqli_fetch_assoc($res)))
45 mysqli_free_result($res);
H A Dmysqli_explain_metadata.phpt17 if (!$res = mysqli_query($link, 'EXPLAIN SELECT t1.*, t2.* FROM test AS t1, test AS t2'))
23 if (!$row = mysqli_fetch_assoc($res)) {
33 while ($row = mysqli_fetch_assoc($res))
36 if (($tmp = mysqli_num_rows($res)) !== $num_rows) {
44 $fields = mysqli_fetch_fields($res);
64 mysqli_free_result($res);
H A Dmysqli_get_client_stats_implicit_free.phpt23 if (!$res = mysqli_query($link, 'SELECT id FROM test'))
26 mysqli_free_result($res);
H A Dmysqli_stmt_bind_param_type_juggling.phpt57 if (!$res = mysqli_query($link, "SELECT col1, col2 FROM test")) {
62 if (2 !== ($tmp = mysqli_num_rows($res))) {
66 $row = mysqli_fetch_assoc($res);
75 $row = mysqli_fetch_assoc($res);
83 mysqli_free_result($res);
H A Dbug49442.phpt51 if (!$res = mysqli_query($link, "SELECT * FROM test ORDER BY id"))
55 while ($row = mysqli_fetch_assoc($res)) {
60 mysqli_free_result($res);
92 if (!$res = mysqli_query($link, "SELECT * FROM test ORDER BY id"))
96 while ($row = mysqli_fetch_assoc($res)) {
H A Dmysqli_pam_sha256_public_key_option_invalid.phpt23 if (!($res = $link->query("SHOW PLUGINS"))) {
28 while ($row = $res->fetch_assoc()) {
37 if (!($res = $link->query("SHOW STATUS LIKE 'Rsa_public_key'"))) {
41 if (!($row = $res->fetch_assoc())) {
107 if (!$res = $link->query("SELECT id FROM test WHERE id = 1"))
111 if (!$row = mysqli_fetch_assoc($res)) {
121 $res->close();
H A Dmysqli_fetch_fields.phpt32 if (!$res = mysqli_query($link, "SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 1")) {
36 $fields = mysqli_fetch_fields($res);
56 mysqli_free_result($res);
58 if (NULL !== ($tmp = mysqli_fetch_fields($res)))
H A Dmysqli_pconn_max_links.phpt75 if (!$res = mysqli_query($plink, 'SELECT id, label FROM test WHERE id = 1'))
79 if (!$row = mysqli_fetch_assoc($res))
82 mysqli_free_result($res);
102 if (!$res = mysqli_query($link, "SHOW FULL PROCESSLIST"))
106 while ($row = mysqli_fetch_assoc($res))
108 mysqli_free_result($res);
134 if (!$res = mysqli_query($plink, 'SELECT id, label FROM test WHERE id = 1'))
138 if (!$row = mysqli_fetch_assoc($res))
141 mysqli_free_result($res);
/PHP-5.5/ext/dba/libinifile/
H A Dinifile.c248 int res, grp_eq = 0; in inifile_fetch() local
263 if (!(res=inifile_key_cmp(&ln.key, key TSRMLS_CC))) { in inifile_fetch()
273 } else if (res == 1) { in inifile_fetch()
314 int res; in inifile_truncate() local
316 if ((res=php_stream_truncate_set_size(dba->fp, size)) != 0) { in inifile_truncate()
317 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error in ftruncate: %d", res); in inifile_truncate()
338 int res; in inifile_find_group() local
341 res = 1; in inifile_find_group()
343 if ((res=inifile_key_cmp(&ln.key, key TSRMLS_CC)) < 2) { in inifile_find_group()
/PHP-5.5/ext/standard/tests/general_functions/
H A Dis_resource_error.phpt16 $res = fopen(__FILE__, "r");
18 var_dump( is_resource($res, $extra_arg) );
/PHP-5.5/ext/spl/tests/
H A Diterator_021.phpt80 $res = $this->getDepth() < $this->max_depth && $has;
81 echo __METHOD__ . "(".$this->getDepth().") = ".($res?"yes":"no")."/".($has?"yes":"no")."\n";
82 if ($has && !$res)
89 return $res;
H A Diterator_022.phpt80 $res = $this->getDepth() < $this->max_depth && $has;
81 echo __METHOD__ . "(".$this->getDepth().") = ".($res?"yes":"no")."/".($has?"yes":"no")."\n";
82 if ($has && !$res)
89 return $res;
/PHP-5.5/ext/mbstring/tests/
H A Dmb_strtolower_variation2.phpt97 $res = mb_strtolower($sourcestring, $input);
98 if ($res === false || $res == NULL) {
99 var_dump($res);
102 var_dump(bin2hex($res));
H A Dmb_strtoupper_variation2.phpt97 $res = mb_strtoupper($sourcestring, $input);
98 if ($res === false || $res == NULL) {
99 var_dump($res);
102 var_dump(bin2hex($res));
/PHP-5.5/ext/intl/tests/
H A Dlocale_accept.phpt26 $res = ut_loc_accept_http($http);
27 $res_str .= @"Accepting $http: $res\n";
/PHP-5.5/ext/oci8/tests/
H A Dnull_byte_2.phpt22 oci_fetch_all($s, $res);
23 var_dump($res);
H A Dnull_byte_3.phpt26 oci_fetch_all($s, $res);
27 var_dump($res);
H A Dlob_039.phpt41 oci_fetch_all($s, $res);
43 var_dump($res);
/PHP-5.5/ext/standard/
H A Dstring.c222 *out = *res; in localeconv_r()
2863 res = res * 33 + (unsigned char)str[i];
2895 HASH hash_a = php_strtr_hash(&S(&pnr_a->pat)[res->m - res->B], res->B)
2897 hash_b = php_strtr_hash(&S(&pnr_b->pat)[res->m - res->B], res->B)
2992 PPRES *res = emalloc(sizeof *res); local
3001 res->B = B = MIN(B, res->m);
3002 res->Bp = Bp = MIN(Bp, res->m);
3004 res->shift = safe_emalloc(SHIFT_TAB_SIZE, sizeof(*res->shift->entries), sizeof(*res->shift));
3008 res->hash = safe_emalloc(HASH_TAB_SIZE, sizeof(*res->hash->entries), sizeof(*res->hash));
3036 HASH h = php_strtr_hash(&S(&res->patterns[i].pat)[res->m - res->B], res->B)
[all …]
/PHP-5.5/ext/mysql/tests/
H A Dmysql_list_tables.phpt32 if (!$res = @mysql_list_tables($db, $link))
44 while ($row = mysql_fetch_assoc($res))
46 mysql_free_result($res);
/PHP-5.5/ext/standard/tests/strings/
H A Dsscanf_basic1.phpt26 $res = sscanf($str, $format, $part, $number, $stock);
27 var_dump($res, $part, $number, $stock);
H A Dsscanf_basic2.phpt26 $res = sscanf($str, $format, $part, $number, $stock);
27 var_dump($res, $part, $number, $stock);

Completed in 63 milliseconds

1...<<11121314151617181920>>...23