Home
last modified time | relevance | path

Searched refs:Foo (Results 76 – 100 of 368) sorted by relevance

12345678910>>...15

/PHP-7.2/ext/reflection/tests/
H A Dbug72174.phpt6 class Foo
28 $instance = new Foo();
29 $reflectionBar = (new ReflectionProperty(Foo::class, 'bar'));
35 string(10) "Foo::__get"
H A DReflectionClass_getNamespaceName.phpt6 class Foo {
15 $function = new \ReflectionClass('A\\B\\Foo');
27 string(7) "A\B\Foo"
29 string(3) "Foo"
H A DReflectionClass_getParentClass.phpt9 class Foo {}
11 class Bar extends Foo {}
19 string(3) "Foo"
H A DReflectionClass_getInterfaceNames_basic.phpt8 interface Foo { }
12 class Baz implements Foo, Bar { }
20 string(3) "Foo"
/PHP-7.2/ext/spl/tests/
H A Darray_018.phpt9 $foo->offsetSet("\0", "Foo");
21 $data = explode("=", "=Foo");
38 string(3) "Foo"
45 string(3) "Foo"
/PHP-7.2/Zend/tests/
H A Dbug63111.phpt5 abstract class Foo {
16 var_dump(is_callable(array("Foo", "bar")));
17 var_dump(is_callable("Foo::bar"));
23 Foo::bar();
34 Fatal error: Uncaught Error: Cannot call abstract method Foo::bar() in %sbug63111.php:20
H A Dns_060.phpt5 namespace Foo;
13 use Foo\A as B;
21 Foo\A
22 Foo\A
H A Dbug75079_2.phpt6 class Foo
13 return Foo::$bar;
20 $f = Foo::test();
32 Fatal error: Uncaught Error: Cannot access private property Foo::$bar in %s:%d
H A Dbug69537.phpt5 class Foo {
12 var_dump(new Foo);
15 object(Foo)#%d (%d) {
H A Dlsb_018.phpt29 class Foo extends Singleton {
38 $u = Foo::getInstance();
46 $x = Foo::getInstance();
59 object(Foo)#%d (1) {
71 object(Foo)#%d (1) {
83 object(Foo)#%d (1) {
H A Dbug47165.phpt5 class Foo {
10 $instance = new Foo();
14 extract(Foo::bar());
H A Dtemporary_cleaning_012.phpt6 class Foo {
13 Foo::test();
20 Access to undeclared static property: Foo::$property
/PHP-7.2/ext/soap/tests/bugs/
H A Dbug41097.phpt14 test($soap, array('Foo', 'Bar'));
15 test($soap, array(5 => 'Foo', 10 => 'Bar'));
16 test($soap, array('5' => 'Foo', '10' => 'Bar'));
17 $soap->test(new SoapVar(array('Foo', 'Bar'), APACHE_MAP));
19 $soap->test(new SoapVar(array('Foo', 'Bar'), SOAP_ENC_ARRAY));
/PHP-7.2/tests/lang/
H A Dtype_hints_001.phpt6 class Foo {
12 function type_hint_foo(Foo $a) {
15 $foo = new Foo;
23 Fatal error: Uncaught TypeError: Argument 1 passed to type_hint_foo() must be an instance of Foo, i…
/PHP-7.2/ext/session/tests/
H A Dsession_set_save_handler_basic.phpt36 $_SESSION["Foo"] = FALSE;
49 $_SESSION['Bar'] = 'Foo';
82 ["Foo"]=>
87 Write [%s,%s,Blah|s:12:"Hello World!";Foo|b:0;Guff|i:1234567890;]
92 ["Foo"]=>
103 ["Foo"]=>
108 Write [%s,%s,Blah|s:12:"Hello World!";Foo|b:0;Guff|i:1234567890;Bar|s:3:"Foo";]
114 Write [%s,%s,Blah|s:12:"Hello World!";Foo|b:0;Guff|i:1234567890;Bar|s:3:"Foo";]
/PHP-7.2/ext/standard/tests/serialize/
H A Dbug49649.phpt7 *class Foo
18 * echo base64_encode(serialize(new Foo()));
24 class Foo
36 object(Foo)#1 (4) {
H A Dbug49649_1.phpt7 *class Foo
18 * echo base64_encode(serialize(new Foo()));
24 class Foo
36 object(Foo)#1 (4) {
H A Dbug42919.phpt5 namespace Foo;
13 O:7:"Foo\Bar":0:{}
14 Foo\Bar
/PHP-7.2/ext/opcache/tests/
H A Dbug72014.phpt13 \$a = new class() { public \$testvar = "Foo\n"; };
27 Foo
28 Foo
29 Foo
H A Dwrong_inlining_002.phpt11 class Foo {
20 Foo::test();
23 Deprecated: Non-static method Foo::test() should not be called statically in %swrong_inlining_002.p…
27 #0 %swrong_inlining_002.php(11): Foo::test()
/PHP-7.2/tests/classes/
H A Darray_access_008.phpt10 $this->person = array(array('name'=>'Foo'));
53 string(3) "Foo"
57 string(3) "Foo"
60 string(3) "Foo"
63 string(3) "Foo"
66 string(3) "Foo"
/PHP-7.2/Zend/tests/arg_unpack/
H A Dmethod.phpt6 class Foo {
16 $foo = new Foo;
17 Foo::test2(1, 2, ...[3, 4], ...[], ...[5]);
/PHP-7.2/ext/iconv/tests/
H A Dbug52941.phpt10 X-Foo: =?ks_c_5601-1987?B?UkU6odk=?= Foo
11 X-Bar: =?ks_c_5601-1987?B?UkU6odk=?= =?UTF-8?Q?Foo?=
19 var_dump($decoded['X-Foo']);
27 var_dump($decoded['X-Foo']);
/PHP-7.2/ext/pcre/tests/
H A Dbug21758.phpt5 class Foo {
21 } // of Foo
23 $o = new Foo;
/PHP-7.2/ext/standard/tests/general_functions/
H A Dbug72920.phpt5 class Foo {
9 var_dump(constant('Foo::C1'));
11 Warning: constant(): Couldn't find constant Foo::C1 in %s on line %d

Completed in 45 milliseconds

12345678910>>...15