Home
last modified time | relevance | path

Searched refs:base (Results 26 – 50 of 406) sorted by relevance

12345678910>>...17

/PHP-8.3/ext/standard/tests/file/
H A Dfilesize_variation2.phpt16 echo "-- Creating a base dir, and checking its size --\n";
21 echo "-- Creating a file inside base dir, and checking dir & file size --\n";
29 echo "-- Creating an empty sub-dir in base-dir, and checking size of base and sub dir --\n";
31 var_dump( filesize( $file_path."/filesize_variation2")); // size of base dir
36 echo "-- Creating a file inside sub-dir, and checking size of base, subdir and file created --\n";
37 // create only the file, as base and subdir is already created
42 // size of base dir
65 -- Creating a base dir, and checking its size --
67 -- Creating a file inside base dir, and checking dir & file size --
70 -- Creating an empty sub-dir in base-dir, and checking size of base and sub dir --
[all …]
/PHP-8.3/tests/classes/
H A Ddestructor_inheritance.phpt5 class base {
15 class derived extends base {
25 base::__construct
26 base::__destruct
H A Dclone_005.phpt5 abstract class base {
6 public $a = 'base';
12 class test extends base {
19 Fatal error: Cannot override final method base::__clone() in %sclone_005.php on line 11
H A Dinterface_class.phpt5 class base {
8 class derived implements base {
12 Fatal error: derived cannot implement base - it is not an interface in %s on line %d
/PHP-8.3/ext/ldap/tests/
H A Dldap_controls.phpt19 insert_dummy_data($link, $base);
23 …$result = ldap_search($link, "o=test,$base", "objectClass=*", array('o'), 0, 0, 0, LDAP_DEREF_NEVE…
26 …$result = ldap_search($link, "o=test,$base", "objectClass=*", array('o'), 0, 0, 0, LDAP_DEREF_NEVE…
28 ldap_modify($link, "o=test,$base", ['description' => 'desc'],
30 $result = ldap_read($link, "o=test,$base", "objectClass=*", array('description')),
32 ldap_modify($link, "o=test,$base", ['description' => 'desc2'],
34 $result = ldap_read($link, "o=test,$base", "objectClass=*", array('description')),
40 ldap_compare($link, "o=test,$base", "o", "test"),
47 $result = ldap_read($link, "o=test2,$base", "objectClass=*", ["l"]),
49 $result = ldap_read($link, "o=test2,$base", "objectClass=*", ["l"], 0, 0, 0, LDAP_DEREF_NEVER,
[all …]
H A Dldap_first_reference_basic.phpt14 insert_dummy_data($link, $base);
15 ldap_add($link, "cn=userref,$base", array(
18 "ref" => "cn=userA,$base",
21 $result = ldap_search($link, "$base", "(cn=*)");
33 ldap_delete($link, "cn=userref,$base", [['oid' => LDAP_CONTROL_MANAGEDSAIT, 'iscritical' => TRUE]]);
34 remove_dummy_data($link, $base);
H A Dldap_parse_reference_basic.phpt14 insert_dummy_data($link, $base);
15 ldap_add($link, "cn=userref,$base", array(
18 "ref" => "cn=userA,$base",
21 $result = ldap_search($link, "$base", "(cn=*)");
36 ldap_delete($link, "cn=userref,$base");
37 remove_dummy_data($link, $base);
H A Dldap_parse_result_basic.phpt15 insert_dummy_data($link, $base);
16 ldap_add($link, "cn=userref,$base", array(
19 "ref" => "cn=userA,$base",
21 $result = ldap_search($link, "cn=userref,$base", "(cn=user*)");
34 ldap_delete($link, "cn=userref,$base", [['oid' => LDAP_CONTROL_MANAGEDSAIT, 'iscritical' => TRUE]]);
35 remove_dummy_data($link, $base);
H A Dldap_exop_refresh.phpt23 insert_dummy_data($link, $base);
24 ldap_add($link, "cn=tmp,$base", array(
30 ldap_exop_refresh($link, "cn=tmp,$base", 1234)
38 ldap_delete($link, "cn=tmp,$base");
39 remove_dummy_data($link, $base);
H A Dldap_compare_basic.phpt15 insert_dummy_data($link, $base);
17 ldap_compare($link, "cn=userA,$base", "sn", "testSN1"),
18 ldap_compare($link, "cn=userA,$base", "telephoneNumber", "yy-yy-yy-yy-yy")
26 remove_dummy_data($link, $base);
H A Dldap_mod_del_basic.phpt15 insert_dummy_data($link, $base);
22 ldap_mod_del($link, "cn=userA,$base", $entry),
25 ldap_search($link, "$base", "(description=user A)")
35 remove_dummy_data($link, $base);
H A Dldap_delete_basic.phpt15 ldap_add($link, "dc=my-domain,$base", array(
25 ldap_delete($link, "dc=my-domain,$base"),
26 @ldap_search($link, "dc=my-domain,$base", "(o=my-domain)")
35 @ldap_delete($link, "dc=my-domain,$base");
H A Dldap_mod_replace_basic.phpt15 insert_dummy_data($link, $base);
22 ldap_mod_replace($link, "cn=userA,$base", $entry),
25 ldap_search($link, "$base", "(description=user X)", array("description"))
35 remove_dummy_data($link, $base);
H A Dldap_search_variation1.phpt18 insert_dummy_data($link, $base);
20 $dn = "$base";
23 $result = ldap_search($link, "o=test,$base", "(o=*)", array('o')),
32 remove_dummy_data($link, $base);
H A Dbug77958.phpt14 insert_dummy_data($link, $base);
31 ldap_modify_batch($link, "cn=userA,$base", $mods),
32 $entry = ldap_first_entry($link, ldap_read($link, "cn=userA,$base", "(telephoneNumber=*)")),
42 remove_dummy_data($link, $base);
/PHP-8.3/ext/intl/collator/
H A Dcollator_is_numeric.c113 static zend_long collator_u_strtol(const UChar *nptr, UChar **endptr, int base) in collator_u_strtol() argument
142 if ((base == 0 || base == 16) && in collator_u_strtol()
147 base = 16; in collator_u_strtol()
149 if (base == 0) in collator_u_strtol()
150 base = (c == 0x30 /*'0'*/) ? 8 : 10; in collator_u_strtol()
170 cutlim = cutoff % (zend_ulong)base; in collator_u_strtol()
171 cutoff /= (zend_ulong)base; in collator_u_strtol()
181 if (c >= base) in collator_u_strtol()
188 acc *= base; in collator_u_strtol()
/PHP-8.3/ext/bcmath/libbcmath/src/
H A Doutput.c82 bc_num int_part, frac_part, base, cur_dig, t_num, max_o_digit; in bc_out_num() local
125 bc_init_num(&base); in bc_out_num()
130 bc_int2num(&base, o_base); in bc_out_num()
136 bc_modulo(int_part, base, &cur_dig, 0); in bc_out_num()
142 bc_divide(int_part, base, &int_part, 0); in bc_out_num()
166 bc_multiply(frac_part, base, &frac_part, num->n_scale); in bc_out_num()
176 bc_multiply(t_num, base, &t_num, 0); in bc_out_num()
184 bc_free_num (&base); in bc_out_num()
/PHP-8.3/ext/phar/tests/
H A D019b.phpt23 function dump($phar, $base)
25 var_dump($phar . $base);
26 $dir = opendir($phar . $base);
27 if ($base == '/')
29 $base = '';
32 $entry = $base . '/' . $entry;
H A D019c.phpt23 function dump($phar, $base)
25 var_dump($phar . $base);
26 $dir = opendir($phar . $base);
27 if ($base == '/')
29 $base = '';
32 $entry = $base . '/' . $entry;
H A Dbug54289.phpt10 $base = __DIR__.DIRECTORY_SEPARATOR.'bug54289'.DIRECTORY_SEPARATOR;
11 $inDir = $base.'in';
12 $phar = $base.'test.phar';
18 $outDir = $base.'out';
55 $base = __DIR__.DIRECTORY_SEPARATOR.'bug54289'.DIRECTORY_SEPARATOR;
56 $phar = $base.'test.phar';
57 $outDir = $base.'out';
/PHP-8.3/Zend/tests/zend_ini/
H A Dgh11876.phpt2 Invalid INI quantities, base prefix followed by stuff eaten by strtoull()
23 Warning: Invalid quantity "0x0x12": no digits after base prefix, interpreting as "0" for backwards …
26 Warning: Invalid quantity "0b+10": no digits after base prefix, interpreting as "0" for backwards c…
29 Warning: Invalid quantity "0o+10": no digits after base prefix, interpreting as "0" for backwards c…
32 Warning: Invalid quantity "0x+10": no digits after base prefix, interpreting as "0" for backwards c…
35 Warning: Invalid quantity "0b 10": no digits after base prefix, interpreting as "0" for backwards c…
38 Warning: Invalid quantity "0o 10": no digits after base prefix, interpreting as "0" for backwards c…
41 Warning: Invalid quantity "0x 10": no digits after base prefix, interpreting as "0" for backwards c…
/PHP-8.3/tests/lang/
H A Dbug29893.phpt5 $base = 50;
7 $base[$base] -= 0;
/PHP-8.3/ext/standard/tests/dir/
H A Dbug72625.phpt12 $base = sys_get_temp_dir() . "/" . md5(uniqid());
13 while (strlen($base) < 260) {
14 $base = "$base/" . md5(uniqid());
17 $f0 = "$base/_test/documents/projects/myproject/vendor/name/library/classpath";
37 while ($tmp > $base) {
/PHP-8.3/ext/standard/
H A Dmath.c569 double num, base = 0; in PHP_FUNCTION() local
581 if (base == 2.0) { in PHP_FUNCTION()
585 if (base == 10.0) { in PHP_FUNCTION()
589 if (base == 1.0) { in PHP_FUNCTION()
593 if (base <= 0.0) { in PHP_FUNCTION()
677 if (Z_TYPE_P(arg) != IS_STRING || base < 2 || base > 36) { in _php_math_basetolong()
689 : base; in _php_math_basetolong()
757 if (c >= base) { in _php_math_basetozval()
801 if (base < 2 || base > 36) { in _php_math_longtobase()
813 value /= base; in _php_math_longtobase()
[all …]
/PHP-8.3/ext/standard/tests/math/
H A Dlog_basic.phpt19 echo "\n LOG tests...no base\n";
25 echo "\n LOG tests...base\n";
32 LOG tests...no base
45 LOG tests...base

Completed in 43 milliseconds

12345678910>>...17