/PHP-8.1/ext/standard/tests/strings/ |
H A D | strrev_variation1.phpt | 40 "h e l l o ", 134 string(15) " o l l e h"
|
H A D | strspn_variation6.phpt | 61 "fh\ne\trlsti \l", 62 'fieh\n\trlsti \l', 65 'l\t', 67 "l \te",
|
H A D | strrev_variation2.phpt | 40 'h e l l o ', 128 string(15) " o l l e h"
|
/PHP-8.1/ext/standard/tests/array/ |
H A D | arsort_basic.phpt | 18 "l" => "lemon", "o" => "orange", 84 ["l"]=> 118 ["l"]=> 152 ["l"]=> 179 ["l"]=> 194 ["l"]=> 221 ["l"]=>
|
H A D | asort_basic.phpt | 18 "l" => "lemon", "o" => "orange", 86 ["l"]=> 120 ["l"]=> 154 ["l"]=> 169 ["l"]=> 196 ["l"]=> 211 ["l"]=>
|
H A D | ksort_basic.phpt | 17 "l" => "lemon", "o" => "orange", 85 ["l"]=> 119 ["l"]=> 153 ["l"]=> 168 ["l"]=> 195 ["l"]=> 210 ["l"]=>
|
H A D | array_rand_variation4.phpt | 85 string\([0-9]*\) "[ot1 ]*[hnw2]*[eort]*[ew]*[e]*[l]*[v]*[e]*" 88 string\([0-9]*\) "[ot1 ]*[hnw2]*[eort]*[ew]*[e]*[l]*[v]*[e]*" 93 string\([0-9]*\) "[ot1 ]*[hnw2]*[eort]*[ew]*[e]*[l]*[v]*[e]*" 95 string\([0-9]*\) "[ot1 ]*[hnw2]*[eort]*[ew]*[e]*[l]*[v]*[e]*"
|
/PHP-8.1/ext/filter/ |
H A D | logical_filters.c | 510 size_t l; in _php_filter_validate_domain() local 515 l = len; in _php_filter_validate_domain() 516 e = domain + l; in _php_filter_validate_domain() 520 if (l > 0 && *t == '.') { in _php_filter_validate_domain() 522 l--; in _php_filter_validate_domain() 526 if (l > 253) { in _php_filter_validate_domain() 583 static bool php_filter_is_valid_ipv6_hostname(const char *s, size_t l) in php_filter_is_valid_ipv6_hostname() argument 585 const char *e = s + l; in php_filter_is_valid_ipv6_hostname() 612 size_t l; in php_filter_validate_url() local 619 l = ZSTR_LEN(url->host); in php_filter_validate_url() [all …]
|
/PHP-8.1/ext/mysqli/ |
H A D | mysqli_prop.c | 77 __ret_type l;\ 80 l = (__ret_type)__int_func(p);\ 81 if (l < ZEND_LONG_MAX) {\ 82 ZVAL_LONG(retval, (zend_long) l);\ 84 ZVAL_NEW_STR(retval, strpprintf(0, __ret_type_sprint_mod, l)); \ 92 __ret_type l;\ 95 l = (__ret_type)__int_func(p);\ 96 ZEND_ASSERT(l < ZEND_LONG_MAX);\ 97 ZVAL_LONG(retval, (zend_long) l);\
|
/PHP-8.1/ext/date/tests/ |
H A D | date_period.phpt | 12 echo $dt->modify( "3 tuesday" )->format( "l Y-m-d\n" ); 23 echo $dt->format( "l Y-m-d H:i:s\n" );
|
H A D | gmdate_variation4.phpt | 16 var_dump( gmdate('l') ); 17 var_dump( gmdate('l', $timestamp) );
|
/PHP-8.1/ext/ldap/tests/ |
H A D | ldap_controls.phpt | 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, 50 … => LDAP_CONTROL_VALUESRETURNFILTER, 'iscritical' => TRUE, 'value' => ['filter' => '(l=*here)']]]), 51 ldap_get_entries($link, $result)[0]['l']
|
/PHP-8.1/ext/phar/tests/ |
H A D | invalid_alias.phpt | 18 $p->setAlias('hi\\l'); 41 Invalid alias "hi\l" specified for phar "%sinvalid_alias.phar"
|
H A D | bug73764.phar | 5 g�?`�`%l�±�TUGBMB
|
H A D | bug73768.phar | 14 ��Z�bl�GBMB
|
/PHP-8.1/sapi/cli/tests/ |
H A D | 012-2.phpt | 14 // -l : behavior = LINT 20 var_dump(`"$php" -n -r "echo 3;" -l`); // ignores linting 28 var_dump(`"$php" -n -l -r "echo 9;"`);
|
/PHP-8.1/ext/standard/ |
H A D | string.c | 2261 l = 0; 2263 l = (zend_long)ZSTR_LEN(str) - f + l; 2339 l = ((zend_long)ZSTR_LEN(str) - f) + l; 2341 l = 0; 2345 if ((size_t)l > ZSTR_LEN(str) || (l < 0 && (size_t)(-l) > ZSTR_LEN(str))) { 2458 l = (ZSTR_LEN(orig_str) - f) + l; 2465 ZEND_ASSERT(0 <= l && l <= ZEND_LONG_MAX); 3376 size_t l; local 3382 for (l = 0; (p + l < end1) && (q + l < end2) && (p[l] == q[l]); l++); 4071 l--; [all …]
|
H A D | html.c | 433 const uni_to_enc *l = table, in unimap_bsearch() local 444 while (l <= h) { in unimap_bsearch() 445 m = l + (h - l) / 2; in unimap_bsearch() 449 l = m + 1; in unimap_bsearch() 1426 size_t l = r->data.ent.entity_len; in write_s3row_data() local 1427 memcpy(&entity[1], r->data.ent.entity, l); in write_s3row_data() 1428 entity[l + 1] = ';'; in write_s3row_data() 1438 entity[l + 1] = ';'; in write_s3row_data() 1443 size_t l, in write_s3row_data() local 1449 l = mcpr[i].normal_entry.entity_len; in write_s3row_data() [all …]
|
/PHP-8.1/ext/dba/tests/ |
H A D | test.inc | 3 $lock_flag = 'l';
|
/PHP-8.1/ext/spl/tests/ |
H A D | iterator_004.phpt | 75 $l = new LimitIterator(new SeekableNumericArrayIterator($a)); 78 $l->seek($i); 79 print $l->current() . "\n";
|
/PHP-8.1/sapi/fpm/fpm/ |
H A D | fpm_log.c | 413 size_t l; in fpm_log_write() local 419 l = s - start; in fpm_log_write() 421 if (l >= sizeof(format) - 1) { in fpm_log_write() 422 l = sizeof(format) - 1; in fpm_log_write() 425 memcpy(format, start, l); in fpm_log_write() 426 format[l] = '\0'; in fpm_log_write()
|
/PHP-8.1/ext/opcache/tests/ |
H A D | switch_string_free_opt.phpt | 8 r>l;
|
/PHP-8.1/ext/openssl/tests/ |
H A D | bug37820key.pem | 5 8IECIQD3B5+0l+68BA/6d76iUNqAAV8djGTzvxnCxycnxPQydQIhAMXt4trUI3nc
|
/PHP-8.1/ext/oci8/tests/ |
H A D | bind_boolean_1.phpt | 88 l boolean; 90 l := :b1; 92 :b2 := l;
|
/PHP-8.1/ext/gd/libgd/ |
H A D | gd_xbm.c | 181 size_t i, l; in gdImageXbmCtx() local 188 if ((l = strlen(name)) == 0) { in gdImageXbmCtx() 192 for (i=0; i<l; i++) { in gdImageXbmCtx()
|