Searched refs:o (Results 101 – 125 of 469) sorted by relevance
12345678910>>...19
/PHP-7.4/Zend/tests/traits/ |
H A D | flattening003.phpt | 27 $o = new MyHelloWorld(); 28 $o->sayHello(); 29 $o->sayWorld();
|
H A D | language007.phpt | 24 $o = new MyHelloWorld(); 25 $o->sayHello(); 26 $o->sayWorld();
|
H A D | language004.phpt | 26 $o = new MyHelloWorld(); 27 $o->saySomething(); 28 $o->sayWorld();
|
H A D | language013.phpt | 24 $o = new C1(); 25 $o->inc(); 26 $o->inc();
|
H A D | language006.phpt | 25 $o = new MyHelloWorld(); 26 $o->setWorld(' World!'); 27 $o->sayHelloWorld();
|
H A D | language011.phpt | 24 $o = new MyClass(); 25 $o->sayHello(); 26 $o->sayWorld();
|
H A D | language014.phpt | 24 $o = new MyClass(); 25 $o->hello(); 26 $o->world();
|
H A D | language010.phpt | 24 $o = new MyClass(); 25 $o->hello(); 26 $o->world();
|
/PHP-7.4/Zend/tests/ |
H A D | bug71067.phpt | 18 $o = new Test(); 19 $o->test(); 21 print_r($o->test());
|
H A D | add_002.phpt | 8 $o = new stdclass; 9 $o->prop = "value"; 12 var_dump($a + $o); 17 $c = $a + $o;
|
H A D | add_003.phpt | 8 $o = new stdclass; 9 $o->prop = "value"; 12 var_dump($o + $a); 17 $c = $o + $a;
|
H A D | closure_033.phpt | 18 $o = new Test; 19 $f = $o->func; 21 $o->func();
|
/PHP-7.4/ext/ldap/tests/ |
H A D | ldap_get_entries_basic.phpt | 19 ldap_search($link, "$base", "(o=test)") 48 ["o"]=> 56 string(1) "o" 60 string(%d) "o=test,%s"
|
H A D | connect.inc | 42 "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 D | arrayObject___construct_basic7.phpt | 8 $o = (object)$a; 9 $ao = new ArrayObject($o); 11 var_dump($a, $o, $ao);
|
H A D | bug77298.phpt | 5 $o = new ArrayObject(); 6 $o2 = unserialize(serialize($o)); 11 $o3->unserialize($o->serialize());
|
/PHP-7.4/ext/standard/tests/file/ |
H A D | fscanf_variation29.phpt | 34 $octal_formats = array( "%o", 36 " %o", "%o ", "% o", 37 "\t%o", "\n%o", "%4o", 38 "%30o", "%[0-7]", "%*o"
|
H A D | fscanf_variation32.phpt | 31 $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 D | bug37816.phpt | 11 $o = new TestClass; 13 $r = new ReflectionProperty($o, 'p'); 17 $x = $r->getValue($o);
|
/PHP-7.4/ext/date/tests/ |
H A D | bug52290.phpt | 12 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 D | bug48476.phpt | 12 $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 D | strrchr_variation2.phpt | 13 $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 D | typed_properties_060.phpt | 11 $o = new B; 12 var_dump($o->a); 13 $o->a = "a";
|
/PHP-7.4/tests/classes/ |
H A D | abstract_user_call.phpt | 19 $o = new test; 21 $o->func(); 23 call_user_func(array($o, 'test_base::func'));
|
H A D | type_hinting_002.phpt | 10 $o = new Foo; 11 $o->a($o);
|
Completed in 105 milliseconds
12345678910>>...19