Home
last modified time | relevance | path

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

12345678910>>...19

/PHP-5.5/Zend/tests/
H A Dbug64417.phpt33 $o = new obj;
34 $o['x'] = 1;
35 ++$o['x'];
36 echo $o['x'], "\n";
H A Dadd_002.phpt8 $o = new stdclass;
9 $o->prop = "value";
11 $c = $a + $o;
H A Dadd_003.phpt8 $o = new stdclass;
9 $o->prop = "value";
11 $c = $o + $a;
H A Dclosure_033.phpt18 $o = new Test;
19 $f = $o->func;
21 $o->func();
/PHP-5.5/tests/classes/
H A Dtostring_002.phpt21 $o = new Test;
22 $o = NULL;
24 $o = new Test;
H A Dautoload_005.phpt25 $o = new autoload_derived;
26 var_dump($o);
30 $o = new Test;
31 unset($o);
H A Dautoload_006.phpt20 $o = new Autoload_Implements;
21 var_dump($o);
22 var_dump($o instanceof autoload_interface);
23 unset($o);
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.phpt12 $o = new Foo;
13 $o->a($o);
/PHP-5.5/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 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();
/PHP-5.5/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-5.5/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-5.5/tests/lang/
H A Dengine_assignExecutionOrder_007.phpt9 $o = new stdClass;
10 $o->a =& new $a[$i=2][++$i];
11 $o->a->b =& new $a[$i=2][++$i];
12 print_r($o);
/PHP-5.5/ext/reflection/tests/
H A Dbug37816.phpt11 $o = new TestClass;
13 $r = new ReflectionProperty($o, 'p');
17 $x = $r->getValue($o);
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestoutput268 Failed: character value in \x{} or \o{} is too large at offset 9
10 /\o{4200000}/8
11 Failed: character value in \x{} or \o{} is too large at offset 10
/PHP-5.5/ext/mbstring/
H A DREADME_PHP3-i18n-ja38 o Who should use this
54 o Redistribution
66 o Who made this
96 o Future plans
104 o Special Thanks to
132 o Summary
144 o configure option
208 o Binary Output
223 o Content-Type
297 o Encoding naming
[all …]
/PHP-5.5/ext/spl/tests/
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();
/PHP-5.5/ext/ereg/regex/
H A Dmain.c330 o |= REG_ICASE;
333 o |= REG_NOSUB;
336 o |= REG_NEWLINE;
340 o |= REG_NOSPEC;
343 o |= REG_PEND;
346 o |= REG_NOTBOL;
349 o |= REG_NOTEOL;
355 o |= REG_TRACE;
358 o |= REG_LARGE;
361 o |= REG_BACKR;
[all …]

Completed in 31 milliseconds

12345678910>>...19