Home
last modified time | relevance | path

Searched refs:result (Results 151 – 175 of 1068) sorted by relevance

12345678910>>...43

/php-src/ext/ldap/tests/
H A Dldap_controls.phpt23 …$result = ldap_search($link, "o=test,$base", "objectClass=*", array('o'), 0, 0, 0, LDAP_DEREF_NEVE…
25 ldap_get_entries($link, $result),
26 …$result = ldap_search($link, "o=test,$base", "objectClass=*", array('o'), 0, 0, 0, LDAP_DEREF_NEVE…
30 $result = ldap_read($link, "o=test,$base", "objectClass=*", array('description')),
31 ldap_get_entries($link, $result),
34 $result = ldap_read($link, "o=test,$base", "objectClass=*", array('description')),
35 ldap_get_entries($link, $result),
47 $result = ldap_read($link, "o=test2,$base", "objectClass=*", ["l"]),
48 ldap_get_entries($link, $result)[0]['l'],
49 $result = ldap_read($link, "o=test2,$base", "objectClass=*", ["l"], 0, 0, 0, LDAP_DEREF_NEVER,
[all …]
H A Dldap_search_variation5.phpt23 $result = ldap_search($link, $dn, $filter, array('sn'), 1, 1, 3, LDAP_DEREF_SEARCHING),
24 ldap_get_entries($link, $result)
27 $result = ldap_search($link, $dn, $filter, array('sn'), 1, 1, 3, LDAP_DEREF_FINDING),
28 ldap_get_entries($link, $result)
31 $result = ldap_search($link, $dn, $filter, array('sn'), 1, 1, 3, LDAP_DEREF_ALWAYS),
32 ldap_get_entries($link, $result)
/php-src/ext/pdo_sqlite/tests/
H A Dpdo_sqlite_createcollation.phpt17 $result = $db->query('SELECT name FROM test_pdo_sqlite_createcollation ORDER BY name COLLATE MYCOLL…
18 foreach ($result as $row) {
22 $result = $db->query('SELECT name FROM test_pdo_sqlite_createcollation ORDER BY name');
23 foreach ($result as $row) {
/php-src/sapi/fuzzer/
H A Dfuzzer-json.c43 zval result; in LLVMFuzzerTestOneInput() local
45 php_json_parser_init(&parser, &result, data, Size, option, 10); in LLVMFuzzerTestOneInput()
47 zval_ptr_dtor(&result); in LLVMFuzzerTestOneInput()
/php-src/ext/standard/tests/general_functions/
H A Dget_extension_funcs_basic.phpt7 $result = get_extension_funcs("standard");
8 var_dump(gettype($result));
9 var_dump(in_array("cos", $result));
H A D003.phpt9 $result=levenshtein($text1,$text2);
11 $result=levenshtein($text1,$text2,$cost1,$cost2,$cost3);
13 if($result==$expect) return 0;
15 echo "$title: result is $result instead of $expect ";
/php-src/ext/mysqli/tests/
H A Dbug36949.phpt19 $result = $this->mysqli->query("SELECT NOW() AS my_time FROM DUAL");
20 $row = $result->fetch_object();
22 $result->close();
37 $result = $this->mysqli->query("SELECT NOW() AS my_time FROM DUAL");
38 $row = $result->fetch_object();
40 $result->close();
/php-src/Zend/
H A Dzend_vm_execute.h5250 result = EX_VAR(opline->result.var); in ZEND_FE_RESET_R_SPEC_CONST_HANDLER()
5504 result = EX_VAR(opline->result.var); in ZEND_JMP_NULL_SPEC_CONST_HANDLER()
8609 result = EX_VAR(opline->result.var); in ZEND_SUB_LONG_NO_OVERFLOW_SPEC_CONST_TMPVARCV_HANDLER()
8621 result = EX_VAR(opline->result.var); in ZEND_SUB_LONG_SPEC_CONST_TMPVARCV_HANDLER()
8633 result = EX_VAR(opline->result.var); in ZEND_SUB_DOUBLE_SPEC_CONST_TMPVARCV_HANDLER()
10657 result = EX_VAR(opline->result.var); in ZEND_NEW_SPEC_CONST_UNUSED_HANDLER()
13228 result = EX_VAR(opline->result.var); in ZEND_ADD_LONG_NO_OVERFLOW_SPEC_TMPVARCV_CONST_HANDLER()
13240 result = EX_VAR(opline->result.var); in ZEND_ADD_LONG_SPEC_TMPVARCV_CONST_HANDLER()
13252 result = EX_VAR(opline->result.var); in ZEND_ADD_DOUBLE_SPEC_TMPVARCV_CONST_HANDLER()
13264 result = EX_VAR(opline->result.var); in ZEND_SUB_LONG_NO_OVERFLOW_SPEC_TMPVARCV_CONST_HANDLER()
[all …]
/php-src/ext/gmp/tests/
H A Dgmp_random_bits.phpt28 $result = gmp_random_bits(30);
29 if ($result < 0 || $result > $limit) {
31 var_dump($result);
/php-src/ext/pdo_sqlite/tests/subclasses/
H A Dpdo_sqlite_createcollation.phpt18 $result = $db->query('SELECT name FROM test_pdo_sqlite_createcollation ORDER BY name COLLATE MYCOLL…
19 foreach ($result as $row) {
23 $result = $db->query('SELECT name FROM test_pdo_sqlite_createcollation ORDER BY name');
24 foreach ($result as $row) {
/php-src/ext/mysqli/tests/functions/
H A Dmysqli_num_fields_show_variables.phpt19 $result = mysqli_store_result($link);
20 $num = mysqli_num_fields($result);
21 mysqli_free_result($result);
/php-src/ext/random/tests/03_randomizer/methods/
H A DgetBytesFromString_fast_path.phpt29 $result = $r->getBytesFromString(substr($allBytes, 0, $i), 20000);
37 for ($j = 0; $j < strlen($result); $j++) {
38 $b = $result[$j];
60 $result = $r->getBytesFromString(substr($allBytes, 0, $oneMore), 20000);
63 for ($j = 0; $j < strlen($result); $j++) {
64 $b = $result[$j];
80 $result = $r->getBytesFromString($allBytes . $allBytes, 20000);
86 for ($j = 0; $j < strlen($result); $j++) {
87 $b = $result[$j];
/php-src/ext/date/tests/
H A Dbug73294.phpt12 $result = $dt->format('Y-m-d H:i:s');
14 if ( $expected != $result )
16 echo "Wrong: Should have been {$expected}, was {$result}\n";
/php-src/ext/json/tests/
H A Djson_encode_recursion_05.phpt12 return [ 'result' => $this->a ];
30 [result] => 1
35 ["result"]=>
H A Djson_encode_recursion_03.phpt12 return [ 'result' => json_encode($this) ];
29 ["result"]=>
36 ["result"]=>
/php-src/ext/intl/dateformat/
H A Ddateformat_format.c60 int32_t result = 0; in internal_get_arr_ele() local
64 return result; in internal_get_arr_ele()
82 result = Z_LVAL_P(ele_value); in internal_get_arr_ele()
87 return result; in internal_get_arr_ele()
102 UDate result; in internal_get_timestamp() local
134 result = ucal_getMillis(pcal, &INTL_DATA_ERROR_CODE(dfo)); in internal_get_timestamp()
136 return result; in internal_get_timestamp()
H A Ddateformat_parse.c36 double result = 0; in internal_parse_to_timestamp() local
53 result = (double)timestamp / U_MILLIS_PER_SECOND; in internal_parse_to_timestamp()
54 if (result > (double)LONG_MAX || result < (double)LONG_MIN) { in internal_parse_to_timestamp()
55 ZVAL_DOUBLE(return_value, result<0?ceil(result):floor(result)); in internal_parse_to_timestamp()
57 ZVAL_LONG(return_value, (zend_long)result); in internal_parse_to_timestamp()
/php-src/ext/sockets/tests/
H A Dsocket_addrinfo_explain.phpt11 $result = socket_addrinfo_explain($addrinfo[0]);
13 unset($result['ai_canonname']);
14 var_dump($result);
/php-src/ext/standard/tests/image/
H A Dimage_type_to_mime_type.phpt11 $result = array();
21 $result[$file] = getimagesize(__DIR__."/$file");
22 $result[$file] = image_type_to_mime_type($result[$file][2]);
24 var_dump($result);
/php-src/ext/iconv/tests/
H A Diconv_mime_encode_001.phpt19 $result = iconv_mime_encode("Subject", "Prüfung", $preferences);
20 var_dump($result);
25 $result = iconv_mime_encode("Subject", "Prüfung", $preferences);
26 var_dump($result);
/php-src/ext/intl/collator/
H A Dcollator_sort.c74 ZVAL_LONG(result, ucol_strcoll( in collator_regular_compare_function()
114 rc = compare_function( result, norm1_p, norm2_p ); in collator_regular_compare_function()
154 ZVAL_LONG(result, numeric_compare_function(op1, op2)); in collator_numeric_compare_function()
176 ZVAL_LONG(result, ucol_strcoll( in collator_icu_compare_function()
193 zval result; in collator_compare_func() local
200 if( Z_TYPE(result) == IS_DOUBLE ) in collator_compare_func()
202 if( Z_DVAL(result) < 0 ) in collator_compare_func()
204 else if( Z_DVAL(result) > 0 ) in collator_compare_func()
210 convert_to_long(&result); in collator_compare_func()
212 if( Z_LVAL(result) < 0 ) in collator_compare_func()
[all …]
/php-src/ext/pdo_mysql/
H A Dmysql_statement.c39 if (S->result) { in pdo_mysql_free_result()
64 mysql_free_result(S->result); in pdo_mysql_free_result()
65 S->result = NULL; in pdo_mysql_free_result()
141 S->result = mysql_use_result(H->server); in pdo_mysql_fill_stmt_from_result()
145 if (NULL == S->result) { in pdo_mysql_fill_stmt_from_result()
174 if (S->result) { in pdo_mysql_stmt_after_execute_prepared()
187 if (S->result) { in pdo_mysql_stmt_after_execute_prepared()
555 if (!S->result) { in pdo_mysql_stmt_fetch()
634 if (!S->result) { in pdo_mysql_stmt_describe()
675 if (!S->result) { in pdo_mysql_stmt_get_col()
[all …]
/php-src/ext/ftp/tests/
H A Dftp_rawlist_basic1.phpt16 $result = ftp_rawlist($ftp, 'www/');
17 var_dump(is_array($result));
18 var_dump($result);
/php-src/ext/hash/tests/
H A Djoaat.phpt19 $result = hash("joaat", $test[0]);
20 if ($result != $test[1]) {
21 …echo "Iteration " . $i . " failed - expected '" . $test[1] . "', got '" . $result . "' for '" . $t…
/php-src/tests/lang/
H A D023.phpt39 Correct result - 8: 8<br>
40 Correct result - 8: 8<br>
41 Correct result - 2: 2<br>
42 Correct result - -2: -2<br>
45 Correct result - 2: 2<br>
46 Correct result - 3: 3<br>
50 Correct result - 8: 8<br>
51 Correct result - 8: 8<br>
52 Correct result - 2: 2<br>
56 Correct result - 2: 2<br>
[all …]

Completed in 173 milliseconds

12345678910>>...43