Home
last modified time | relevance | path

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

12345678910>>...37

/PHP-7.4/ext/mysqli/tests/
H A Dps_cursor_multiple_result_sets.phpt2 PS using cursor and returning multiple result sets
61 $result = $stmt->get_result();
62 while ($row = $result->fetch_assoc()) {
67 $result = $stmt->get_result();
68 while ($row = $result->fetch_assoc()) {
H A D014.phpt45 if (!$result = mysqli_query($link, "SELECT * FROM test"))
48 printf("Num_of_rows=%d\n", mysqli_num_rows($result));
49 if (!$row = mysqli_fetch_row($result))
52 mysqli_free_result($result);
65 if (!$result = mysqli_query($link, "SELECT * FROM test"))
68 if (!$row = mysqli_fetch_row($result))
71 mysqli_free_result($result);
/PHP-7.4/ext/intl/collator/
H A Dcollator_sort.c88 ZVAL_LONG(result, ucol_strcoll( in collator_regular_compare_function()
128 rc = compare_function( result, norm1_p, norm2_p ); in collator_regular_compare_function()
169 ZVAL_LONG(result, numeric_compare_function(op1, op2)); in collator_numeric_compare_function()
198 ZVAL_LONG(result, ucol_strcoll( in collator_icu_compare_function()
217 zval result; in collator_compare_func() local
230 if( Z_TYPE(result) == IS_DOUBLE ) in collator_compare_func()
232 if( Z_DVAL(result) < 0 ) in collator_compare_func()
234 else if( Z_DVAL(result) > 0 ) in collator_compare_func()
240 convert_to_long(&result); in collator_compare_func()
242 if( Z_LVAL(result) < 0 ) in collator_compare_func()
[all …]
/PHP-7.4/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_memory_device.c117 mbfl_memory_device_result(mbfl_memory_device *device, mbfl_string *result) in mbfl_memory_device_result() argument
119 if (device && result) { in mbfl_memory_device_result()
120 result->len = device->pos; in mbfl_memory_device_result()
122 result->val = device->buffer; in mbfl_memory_device_result()
126 if (result->val == NULL) { in mbfl_memory_device_result()
127 result->len = 0; in mbfl_memory_device_result()
128 result = NULL; in mbfl_memory_device_result()
131 result = NULL; in mbfl_memory_device_result()
134 return result; in mbfl_memory_device_result()
/PHP-7.4/ext/calendar/
H A Deaster.c32 zend_long year, golden, solar, lunar, pfm, dom, tmp, easter, result; in _cal_easter() local
113 result = mktime(&te); in _cal_easter()
115 result = easter; in _cal_easter()
117 ZVAL_LONG(return_value, result); in _cal_easter()
/PHP-7.4/Zend/
H A Dzend_smart_string.h95 char *result = zend_print_long_to_buf(buf + sizeof(buf) - 1, num); in smart_string_append_long_ex() local
96 smart_string_appendl_ex(dest, result, buf + sizeof(buf) - 1 - result, persistent); in smart_string_append_long_ex()
101 char *result = zend_print_ulong_to_buf(buf + sizeof(buf) - 1, num); in smart_string_append_unsigned_ex() local
102 smart_string_appendl_ex(dest, result, buf + sizeof(buf) - 1 - result, persistent); in smart_string_append_unsigned_ex()
/PHP-7.4/ext/pdo_sqlite/tests/
H A Dbug_42589.phpt14 $result = $db->query('SELECT * FROM test t1 LEFT JOIN test t2 ON t1.field1 = t2.field1');
15 $meta1 = $result->getColumnMeta(0);
16 $meta2 = $result->getColumnMeta(1);
/PHP-7.4/Zend/tests/
H A Dbug64417.phpt21 $result = null;
23 $result = &$this->container[$offset];
25 return $result;
/PHP-7.4/ext/com_dotnet/tests/
H A Dbug66431_0.phpt20 $result = ($check_text == $text);
22 var_dump($result);
24 if (!$result) {
/PHP-7.4/ext/ldap/tests/
H A Dldap_first_entry_basic.phpt15 $result = ldap_search($link, "$base", "(objectclass=person)");
17 $entry = ldap_first_entry($link, $result),
30 resource(%d) of type (ldap result entry)
H A Dldap_next_entry_basic.phpt15 $result = ldap_list($link, "$base", "(objectClass=person)");
16 $entry = ldap_first_entry($link, $result);
32 resource(%d) of type (ldap result entry)
H A Dldap_mod_ext.phpt26 $result = ldap_mod_add_ext($link, "o=test,$base", $entry,
32 ldap_parse_result($link, $result, $errcode, $matcheddn, $errmsg, $referrals, $ctrls),
40 $result = ldap_mod_del_ext($link, "o=test,$base", $entry,
46 ldap_parse_result($link, $result, $errcode, $matcheddn, $errmsg, $referrals, $ctrls),
66 resource(%d) of type (ldap result)
137 resource(%d) of type (ldap result)
/PHP-7.4/ext/openssl/tests/
H A DServerClientTestCase.inc18 static $result = null;
19 if (!is_null($result)) {
20 return $result;
23 if ($result = !!$server) {
26 return $result;
146 $result = stream_select($read, $write, $except, $timeout);
147 if (!$result) {
/PHP-7.4/ext/dom/tests/
H A Ddomdocumentload_test_method.inc8 $result = $doc->load(dirname(__FILE__) . getenv('XML_FILE'), $libxml_options);
11 assert($result === $expectedResult);
H A Ddomdocumentloadxml_test_method.inc7 $result = $doc->loadXML(file_get_contents(dirname(__FILE__) . getenv('XML_FILE')),
11 assert($result === $expectedResult);
H A Ddomdocumentload_test_method_savexml.inc8 $result = $doc->load(dirname(__FILE__) . getenv('XML_FILE'), $libxml_options);
11 assert($result === $expectedResult);
H A Ddomdocumentloadxml_test_method_savexml.inc7 $result = $doc->loadXML(file_get_contents(dirname(__FILE__) . getenv('XML_FILE')),
11 assert($result === $expectedResult);
/PHP-7.4/ext/pdo_mysql/tests/
H A Dbug_38546.phpt44 $result = $st->execute();
46 if ($result === false) {
70 $result = $st->execute();
72 if ($result === false) {
96 $result = $st->execute();
98 if ($result === false) {
123 $result = $st->execute();
125 if ($result === false) {
150 $result = $st->execute();
152 if ($result === false) {
[all …]
/PHP-7.4/ext/standard/tests/strings/
H A Dlevenshtein.phpt9 $result=levenshtein($text1,$text2);
12 $result=levenshtein($text1,$text2,$cost1);
15 $result=levenshtein($text1,$text2,$cost1,$cost2,$cost3);
17 if($result==$expect) return 0;
19 echo "$title: result is $result instead of $expect ";
/PHP-7.4/ext/oci8/tests/
H A Dlob_018.phpt48 $result = $row['LOB_1']->load();
49 var_dump($result);
59 $result = $row['LOB_1']->load();
60 var_dump($result);
79 $result = $row['LOB_1']->load();
80 var_dump($result);
/PHP-7.4/ext/pdo_pgsql/tests/
H A Dbug72294.phpt26 private $result;
28 public function run(PHPUnit_Framework_TestResult $result = null)
30 $result->run($this);
94 $result = new PHPUnit_Framework_TestResult();
141 $test->run( $result );
143 $test->run( $result );
/PHP-7.4/ext/standard/tests/array/
H A Dbug70808.phpt11 $result = array_merge_recursive($arr1, $arr2);
12 print_r($result);
/PHP-7.4/ext/opcache/tests/
H A Dsccp_loop_var_free.phpt8 if (!empty($result)) {
9 return $result;
/PHP-7.4/ext/standard/
H A Dmd5.c374 result[0] = ctx->a; in PHP_MD5Final()
375 result[1] = ctx->a >> 8; in PHP_MD5Final()
376 result[2] = ctx->a >> 16; in PHP_MD5Final()
377 result[3] = ctx->a >> 24; in PHP_MD5Final()
378 result[4] = ctx->b; in PHP_MD5Final()
379 result[5] = ctx->b >> 8; in PHP_MD5Final()
380 result[6] = ctx->b >> 16; in PHP_MD5Final()
381 result[7] = ctx->b >> 24; in PHP_MD5Final()
382 result[8] = ctx->c; in PHP_MD5Final()
383 result[9] = ctx->c >> 8; in PHP_MD5Final()
[all …]
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_plugin.c170 int result; in mysqlnd_plugin_apply_with_argument() local
173 result = apply_func(val, argument); in mysqlnd_plugin_apply_with_argument()
174 if (result & ZEND_HASH_APPLY_REMOVE) { in mysqlnd_plugin_apply_with_argument()
177 if (result & ZEND_HASH_APPLY_STOP) { in mysqlnd_plugin_apply_with_argument()

Completed in 66 milliseconds

12345678910>>...37