Home
last modified time | relevance | path

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

12345678910>>...19

/PHP-7.4/Zend/tests/traits/
H A Dflattening003.phpt27 $o = new MyHelloWorld();
28 $o->sayHello();
29 $o->sayWorld();
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 Dlanguage013.phpt24 $o = new C1();
25 $o->inc();
26 $o->inc();
H A Dlanguage006.phpt25 $o = new MyHelloWorld();
26 $o->setWorld(' World!');
27 $o->sayHelloWorld();
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();
H A Dlanguage010.phpt24 $o = new MyClass();
25 $o->hello();
26 $o->world();
/PHP-7.4/Zend/tests/
H A Dbug71067.phpt18 $o = new Test();
19 $o->test();
21 print_r($o->test());
H A Dadd_002.phpt8 $o = new stdclass;
9 $o->prop = "value";
12 var_dump($a + $o);
17 $c = $a + $o;
H A Dadd_003.phpt8 $o = new stdclass;
9 $o->prop = "value";
12 var_dump($o + $a);
17 $c = $o + $a;
H A Dclosure_033.phpt18 $o = new Test;
19 $f = $o->func;
21 $o->func();
/PHP-7.4/ext/ldap/tests/
H A Dldap_get_entries_basic.phpt19 ldap_search($link, "$base", "(o=test)")
48 ["o"]=>
56 string(1) "o"
60 string(%d) "o=test,%s"
H A Dconnect.inc42 "o" => "php ldap tests"
46 ldap_add($link, "o=test,$base", array(
50 "o" => "test",
73 ldap_add($link, "o=test2,$base", array(
77 "o" => "test2",
86 ldap_delete($link, "o=test,$base");
87 ldap_delete($link, "o=test2,$base");
/PHP-7.4/ext/spl/tests/
H A DarrayObject___construct_basic7.phpt8 $o = (object)$a;
9 $ao = new ArrayObject($o);
11 var_dump($a, $o, $ao);
H A Dbug77298.phpt5 $o = new ArrayObject();
6 $o2 = unserialize(serialize($o));
11 $o3->unserialize($o->serialize());
/PHP-7.4/ext/standard/tests/file/
H A Dfscanf_variation29.phpt34 $octal_formats = array( "%o",
36 " %o", "%o ", "% o",
37 "\t%o", "\n%o", "%4o",
38 "%30o", "%[0-7]", "%*o"
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.4/ext/reflection/tests/
H A Dbug37816.phpt11 $o = new TestClass;
13 $r = new ReflectionProperty($o, 'p');
17 $x = $r->getValue($o);
/PHP-7.4/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.4/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.4/Zend/tests/type_declarations/
H A Dtyped_properties_060.phpt11 $o = new B;
12 var_dump($o->a);
13 $o->a = "a";
/PHP-7.4/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);

Completed in 28 milliseconds

12345678910>>...19