Home
last modified time | relevance | path

Searched refs:result (Results 176 – 200 of 1047) sorted by relevance

12345678910>>...42

/PHP-8.2/ext/standard/tests/array/
H A Dbug45312.phpt25 $result = array_udiff_assoc($a, $b, array("cr", "comp_func_cr"));
26 foreach($result as $val) {
29 $result = array_udiff_assoc($a, $b, array("cr", "comp_func_cr2"));
30 foreach($result as $val) {
H A Darray_walk_closure.phpt18 echo "End result:";
30 echo "End result:";
43 echo "End result:";
59 echo "End result:";
74 echo "End result:";
129 End result:int(42)
145 End result:int(48)
167 End result:int(48)
183 End result:int(48)
199 End result:int(42)
/PHP-8.2/ext/hash/sha3/generic32lc/
H A DKeccakHash.c23 HashReturn result; in Keccak_HashInitialize() local
27 result = (HashReturn)KeccakWidth1600_SpongeInitialize(&instance->sponge, rate, capacity); in Keccak_HashInitialize()
28 if (result != SUCCESS) in Keccak_HashInitialize()
29 return result; in Keccak_HashInitialize()
/PHP-8.2/ext/hash/sha3/generic64lc/
H A DKeccakHash.c23 HashReturn result; in Keccak_HashInitialize() local
27 result = (HashReturn)KeccakWidth1600_SpongeInitialize(&instance->sponge, rate, capacity); in Keccak_HashInitialize()
28 if (result != SUCCESS) in Keccak_HashInitialize()
29 return result; in Keccak_HashInitialize()
/PHP-8.2/ext/ldap/tests/
H A Dldap_parse_result_controls.phpt2 ldap_parse_result() - Test the parsing of controls from result object
23 $result = ldap_search($link, $dn, $filter, array('cn'), 0, 0, 0, LDAP_DEREF_NEVER,
25 ldap_parse_result($link, $result, $errcode, $dn, $errmsg, $refs, $ctrls),
29 ldap_get_entries($link, $result)['count']
H A Dbug48441.phpt22 $result = ldap_search($link, $dn, $filter, array('sn')),
23 ldap_get_entries($link, $result)
26 $result = ldap_search($link, $dn, $filter, array('sn'), 1, 1, 1, LDAP_DEREF_ALWAYS),
27 ldap_get_entries($link, $result)
30 $result = ldap_search($link, $dn, $filter, array('sn')),
31 ldap_get_entries($link, $result)
/PHP-8.2/ext/json/tests/
H A Djson_encode_recursion_04.phpt12 return [ 'result' => var_export($this, true) ];
29 ["result"]=>
37 ["result"]=>
/PHP-8.2/ext/mysqli/tests/
H A D049.phpt17 $result = $mysql->query("SELECT DATABASE()");
18 $row = $result->fetch_row();
19 $result->close();
H A Dbug66124.phpt51 $result = $link->query($table_select);
53 if ($result){
54 while ($row = $result->fetch_assoc()) {
80 $result = $link->query($table_select);
82 if ($result){
83 while ($row = $result->fetch_assoc()) {
/PHP-8.2/ext/pdo_mysql/tests/
H A Dbug_38546.phpt41 $result = $st->execute();
43 if ($result === false) {
67 $result = $st->execute();
69 if ($result === false) {
93 $result = $st->execute();
95 if ($result === false) {
120 $result = $st->execute();
122 if ($result === false) {
147 $result = $st->execute();
149 if ($result === false) {
[all …]
/PHP-8.2/ext/standard/
H A Dstrnatcmp.c94 int fractional, result; in strnatcmp_ex() local
130 result = compare_left(&ap, aend, &bp, bend); in strnatcmp_ex()
132 result = compare_right(&ap, aend, &bp, bend); in strnatcmp_ex()
134 if (result != 0) in strnatcmp_ex()
135 return result; in strnatcmp_ex()
/PHP-8.2/ext/standard/tests/time/
H A D001.phpt13 $result = '';
22 $result .= sprintf('%06d', $i).": $time $micro < $last_t $last_m\n";
29 echo $result;
/PHP-8.2/ext/date/tests/
H A Dbug20382-1.phpt2 Bug #20382 [1] (strtotime ("Monday", $date) produces wrong result on DST changeover)
11 echo "result=". date("l Y-m-d H:i:s T", $strtotime_timestamp). "\n";
16 result=Monday 2004-11-01 00:00:00 CET
/PHP-8.2/ext/bcmath/libbcmath/src/
H A Dadd.c42 void bc_add(bc_num n1, bc_num n2, bc_num *result, size_t scale_min) in bc_add() argument
71 bc_free_num (result); in bc_add()
72 *result = sum; in bc_add()
H A Dsub.c42 void bc_sub(bc_num n1, bc_num n2, bc_num *result, size_t scale_min) in bc_sub() argument
74 bc_free_num (result); in bc_sub()
75 *result = diff; in bc_sub()
/PHP-8.2/ext/mysqli/tests/functions/
H A Dmysqli_set_charset.phpt17 $result = mysqli_query($link, 'SHOW CHARACTER SET');
19 while ($row = mysqli_fetch_assoc($result)) {
22 mysqli_free_result($result);
57 $result = mysqli_query($link, "SELECT id, label FROM test_mysqli_set_charset");
59 $tmp = mysqli_fetch_assoc($result);
70 mysqli_free_result($result);
H A Dmysqli_num_fields.phpt22 $result = mysqli_store_result($link);
23 $num = mysqli_num_fields($result);
24 mysqli_free_result($result);
/PHP-8.2/ext/dom/lexbor/patches/
H A D0001-Patch-utilities-and-data-structure-to-be-able-to-gen.patch79 result.append("{{{}, {}, {}}},".format(entry[0], entry[1], entry[2]))
81 - result.append("{0, NULL, 0},")
82 + result.append("{0, 0, 0},")
85 result.append("\n ")
93 result.append("{{{}, {}, {}}}\n".format(entry[0], entry[1], entry[2]))
95 - result.append("{0, NULL, 0}\n")
96 + result.append("{0, 0, 0}\n")
98 result.append("};")
/PHP-8.2/ext/standard/tests/image/
H A Dgetimagesize_246x247.phpt11 $result = array();
21 $result[$file] = getimagesize(__DIR__."/$file");
23 var_dump($result);
H A Dgetimagesize_384x385.phpt11 $result = array();
21 $result[$file] = getimagesize(__DIR__."/$file");
23 var_dump($result);
/PHP-8.2/ext/com_dotnet/tests/
H A Dbug66431_0.phpt18 $result = ($check_text == $text);
20 var_dump($result);
22 if (!$result) {
/PHP-8.2/ext/pgsql/tests/
H A D16pg_result_status.phpt16 $result = pg_query($db, "BEGIN;END");
18 echo pg_result_status($result)."\n";
19 echo pg_result_status($result, PGSQL_STATUS_STRING)."\n";
/PHP-8.2/ext/standard/tests/url/
H A Dbase64_loop_001.phpt11 $result = "";
21 $result .= strcmp($str, $str_dec);
24 if ($result != $expect_result) {
/PHP-8.2/tests/lang/
H A Dbug19566.phpt6 $result = get_declared_classes();
7 var_dump(array_search('foo', $result));
/PHP-8.2/Zend/
H A Dzend_smart_string.h93 char *result = zend_print_long_to_buf(buf + sizeof(buf) - 1, num); in smart_string_append_long_ex() local
94 smart_string_appendl_ex(dest, result, buf + sizeof(buf) - 1 - result, persistent); in smart_string_append_long_ex()
99 char *result = zend_print_ulong_to_buf(buf + sizeof(buf) - 1, num); in smart_string_append_unsigned_ex() local
100 smart_string_appendl_ex(dest, result, buf + sizeof(buf) - 1 - result, persistent); in smart_string_append_unsigned_ex()

Completed in 80 milliseconds

12345678910>>...42