Home
last modified time | relevance | path

Searched refs:o (Results 101 – 125 of 478) sorted by relevance

12345678910>>...20

/PHP-7.3/ext/standard/tests/strings/
H A Dstrrchr_variation2.phpt13 $haystack = 'Hello,\t\n\0\n $&!#%\o,()*+-./:;<=>?@hello123456he \x234 \101 ';
48 '%\o',
49 '\o,',
93 string(63) "Hello,\t\n\0\n $&!#%\o,()*+-./:;<=>?@hello123456he \x234 \101 "
146 string(47) "$&!#%\o,()*+-./:;<=>?@hello123456he \x234 \101 "
152 string(46) "&!#%\o,()*+-./:;<=>?@hello123456he \x234 \101 "
155 string(45) "!#%\o,()*+-./:;<=>?@hello123456he \x234 \101 "
158 string(43) "%\o,()*+-./:;<=>?@hello123456he \x234 \101 "
212 string(44) "#%\o,()*+-./:;<=>?@hello123456he \x234 \101 "
229 string(63) "Hello,\t\n\0\n $&!#%\o,()*+-./:;<=>?@hello123456he \x234 \101 "
/PHP-7.3/ext/reflection/tests/
H A Dbug37816.phpt11 $o = new TestClass;
13 $r = new ReflectionProperty($o, 'p');
17 $x = $r->getValue($o);
/PHP-7.3/ext/spl/tests/
H A Dbug77298.phpt5 $o = new ArrayObject();
6 $o2 = unserialize(serialize($o));
11 $o3->unserialize($o->serialize());
H A Dfileobject_003.phpt12 $o = new SplFileInfo($name);
14 var_dump($o);
15 $c = clone $o;
17 var_dump($o === $c);
18 var_dump($o == $c);
19 var_dump($o->getPathname() == $c->getPathname());
37 $fo = $o->openFile();
H A DSplObjectStorage_unserialize_nested.phpt5 $o = new StdClass();
8 $o->a = $a;
12 $so[$o] = 1;
H A Dbug65213.phpt6 $o = new SplFileInfo('.');
7 var_dump((bool) $o);
/PHP-7.3/Zend/tests/traits/
H A Dlanguage007.phpt24 $o = new MyHelloWorld();
25 $o->sayHello();
26 $o->sayWorld();
H A Dlanguage004.phpt26 $o = new MyHelloWorld();
27 $o->saySomething();
28 $o->sayWorld();
H A Dlanguage006.phpt25 $o = new MyHelloWorld();
26 $o->setWorld(' World!');
27 $o->sayHelloWorld();
H A Dlanguage013.phpt24 $o = new C1();
25 $o->inc();
26 $o->inc();
H A Dlanguage010.phpt24 $o = new MyClass();
25 $o->hello();
26 $o->world();
H A Dlanguage011.phpt24 $o = new MyClass();
25 $o->sayHello();
26 $o->sayWorld();
H A Dlanguage014.phpt24 $o = new MyClass();
25 $o->hello();
26 $o->world();
/PHP-7.3/ext/date/tests/
H A Dbug52290.phpt12 var_dump($dt->format('o-\WW-N | Y-m-d | H:i:s | U'));
15 var_dump($dt->format('o-\WW-N | Y-m-d | H:i:s | U'));
18 var_dump($dt->format('o-\WW-N | Y-m-d | H:i:s | U'));
21 var_dump($dt->format('o-\WW-N | Y-m-d | H:i:s | U'));
H A Dbug48476.phpt12 $o = new MyDateTime;
13 var_dump($o->format("d"));
14 $x = clone $o;
18 clone $o;
/PHP-7.3/ext/standard/tests/file/
H A Dfscanf_variation32.phpt31 $octal_formats = array( "%o",
33 " %o", "%o ", "% o",
34 "\t%o", "\n%o", "%4o",
35 "%30o", "%[0-7]", "%*o"
/PHP-7.3/ext/standard/
H A Dbase64.c418 o += 16; \
434 unsigned char *o; in php_base64_encode() local
438 o = (unsigned char *)ZSTR_VAL(result); in php_base64_encode()
452 o += 32; in php_base64_encode()
464 o = php_base64_encode_impl(c, length, o); in php_base64_encode()
475 unsigned char *o; in php_base64_encode_ssse3() local
483 o = php_base64_encode_impl(c, length, o); in php_base64_encode_ssse3()
622 o += 12; \
640 unsigned char *o; in php_base64_decode_ex() local
693 o += 24; in php_base64_decode_ex()
[all …]
/PHP-7.3/ext/ldap/tests/
H A Dconnect.inc41 "o" => "php ldap tests"
45 ldap_add($link, "o=test,$base", array(
49 "o" => "test",
72 ldap_add($link, "o=test2,$base", array(
76 "o" => "test2",
85 ldap_delete($link, "o=test,$base");
86 ldap_delete($link, "o=test2,$base");
H A Dldap_add_basic.phpt22 "o" => "my-domain",
26 ldap_search($link, "$base", "(o=my-domain)")
68 ["o"]=>
76 string(1) "o"
/PHP-7.3/tests/classes/
H A Dabstract_user_call.phpt19 $o = new test;
21 $o->func();
23 call_user_func(array($o, 'test_base::func'));
H A Dtype_hinting_002.phpt10 $o = new Foo;
11 $o->a($o);
/PHP-7.3/Zend/tests/
H A Dclosure_033.phpt18 $o = new Test;
19 $f = $o->func;
21 $o->func();
/PHP-7.3/ext/standard/tests/serialize/
H A Dincomplete_class.phpt7 $o = unserialize($d);
8 var_dump($o);
10 $o->test = "a";
11 var_dump($o->test);
12 var_dump($o->test2);
/PHP-7.3/ext/zip/tests/
H A Dbug49072.phpt10 $o = new ZipArchive();
11 if (! $o->open($f, ZipArchive::CHECKCONS)) {
14 $r = $o->getStream('file1'); // this file has a wrong crc
/PHP-7.3/ext/standard/tests/general_functions/
H A Dbug70947.phpt5 $o = parse_ini_string('foo = bar 123', FALSE, INI_SCANNER_TYPED);
6 var_dump($o);

Completed in 24 milliseconds

12345678910>>...20