Home
last modified time | relevance | path

Searched refs:o (Results 76 – 100 of 529) sorted by relevance

12345678910>>...22

/php-src/ext/ldap/tests/
H A Dldap_read_basic.phpt20 $result = ldap_read($link, "o=test,$base", "(o=*)"),
50 ["o"]=>
58 string(1) "o"
62 string(%d) "o=test,%s"
H A Dldap_mod_add_basic.phpt22 ldap_mod_add($link, "o=test,$base", $entry),
25 ldap_search($link, "o=test,$base", "(Description=Domain description)")
55 ["o"]=>
63 string(1) "o"
76 string(%d) "o=test,%s"
H A Dldap_modify_basic.phpt21 "o" => "test",
26 ldap_modify($link, "o=test,$base", $entry),
59 ["o"]=>
67 string(1) "o"
80 string(%d) "o=test,%s"
/php-src/Zend/tests/
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 Dbug62441.phpt7 function method(stdClass $o);
12 function method(stdClass $o) { }
19 …not check compatibility between ns\Foo::method(ns\stdClass $o) and Iface::method(stdClass $o), bec…
H A Dlsb_016.phpt31 $o = new TestChild;
32 $o->test();
33 $o->a = "b";
34 echo $o->a;
/php-src/tests/lang/
H A Dtype_hints_002.phpt13 $o=new T();
14 $o->f(new P);
15 $o->f();
16 $o->f(NULL);
/php-src/ext/intl/tests/
H A Duconverter_bug66873.phpt7 $o = new UConverter(1, 1);
8 $o->toUCallback(1, 1, 1, $b);
9 var_dump($o->getErrorCode());
/php-src/ext/standard/tests/strings/
H A Dprintf_basic8.phpt15 $format1 = "%o";
16 $format2 = "%o %o";
17 $format3 = "%o %o %o";
/php-src/ext/spl/tests/
H A Ddit_006.phpt24 $o = 0;
27 $o++;
31 echo "Without seek we get $o\n";
35 $di->seek($o+1);
41 var_dump($n !== $m, $m === $o, $p === 0);
/php-src/Zend/tests/type_declarations/intersection_types/
H A Dadded_interface_intersection_type.phpt20 function bar(X&Y $o): void {
21 var_dump($o);
24 $o = foo();
25 var_dump($o);
H A Dmissing_interface_intersection_type.phpt20 function bar(X&Y $o): void {
21 var_dump($o);
25 $o = foo();
26 var_dump($o);
50 bar(): Argument #1 ($o) must be of type X&Y, A given, called in %s on line %d
/php-src/ext/opcache/tests/jit/
H A Dassign_obj_001.phpt11 function test1($o) {
12 $o->x = new stdClass;
14 function test2($o) {
15 $o->x += new stdClass;
/php-src/Zend/tests/type_declarations/
H A Dtyped_properties_058.phpt17 $o = new A();
18 var_dump($o->foo);
22 $o = new B();
23 var_dump($o->foo);
/php-src/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp932_1.phpt26 $item = "�e�X�g�}���`�o�C�g�E�p�X"; // cp932 string
49 getting basename of %s\�e�X�g�}���`�o�C�g�E�p�X42\�e�X�g�}���`�o�C�g�E�p�X4
50 string(%d) "�e�X�g�}���`�o�C�g�E�p�X4"
52 string(%d) "%s\�e�X�g�}���`�o�C�g�E�p�X42\�e�X�g�}���`�o�C�g�E�p�X4"
/php-src/ext/zend_test/tests/
H A Dzend_internal_class_prop_intersection.phpt21 $o = new _ZendTestClass();
24 var_dump($o->classIntersectionProp);
29 $o->classIntersectionProp = new EmptyIterator();
34 $o->classIntersectionProp = new C();
38 $o->classIntersectionProp = new I();
/php-src/ext/standard/tests/file/
H A Dfscanf_variation29.phpt29 $octal_formats = array( "%o",
31 " %o", "%o ", "% o",
32 "\t%o", "\n%o", "%4o",
33 "%30o", "%[0-7]", "%*o"
/php-src/Zend/tests/type_declarations/dnf_types/variance/
H A Dvalid1.phpt30 $o = new FooChild();
31 var_dump($o->foo());
32 $o = new FooSecondChild();
33 var_dump($o->foo());
/php-src/Zend/tests/type_declarations/intersection_types/variance/
H A Dvalid1.phpt30 $o = new FooChild();
31 var_dump($o->foo());
32 $o = new FooSecondChild();
33 var_dump($o->foo());
/php-src/tests/classes/
H A Dtostring_002.phpt19 $o = new Test;
20 $o = NULL;
22 $o = new Test;
H A Dautoload_006.phpt18 $o = new Autoload_Implements;
19 var_dump($o);
20 var_dump($o instanceof autoload_interface);
21 unset($o);
H A Dautoload_005.phpt23 $o = new autoload_derived;
24 var_dump($o);
28 $o = new Test;
29 unset($o);
/php-src/ext/reflection/tests/
H A Dbug37816.phpt11 $o = new TestClass;
13 $r = new ReflectionProperty($o, 'p');
15 var_dump($r->getValue($o));
/php-src/Zend/tests/traits/
H A Dlanguage008b.phpt21 $o = new MyClass();
22 $o->sayHello();
23 $o->callPrivateAlias();
24 $o->sayHelloWorld();

Completed in 20 milliseconds

12345678910>>...22