Home
last modified time | relevance | path

Searched refs:B (Results 26 – 50 of 623) sorted by relevance

12345678910>>...25

/PHP-7.4/ext/standard/tests/serialize/
H A Dbug62836_1.phpt5 $serialized_object='O:1:"A":4:{s:1:"b";O:1:"B":0:{}s:2:"b1";r:2;s:1:"c";O:1:"B":0:{}s:2:"c1";r:4;}';
17 [b] => B Object
21 [b1] => B Object
25 [c] => B Object
29 [c1] => B Object
H A Dbug62836_2.phpt5 $serialized_object='O:1:"A":4:{s:1:"b";O:1:"B":0:{}s:2:"b1";r:2;s:1:"c";O:1:"B":0:{}s:2:"c1";r:4;}';
20 [b] => B Object
24 [b1] => B Object
28 [c] => B Object
32 [c1] => B Object
/PHP-7.4/Zend/tests/type_declarations/variance/
H A Dclass_order_autoload3.phpt12 } else if ($class == 'B') {
13 class B extends A {
16 var_dump(new B);
24 public function method(): B {}
30 var_dump(new B);
41 object(B)#2 (0) {
43 object(B)#2 (0) {
H A Dclass_order_autoload1.phpt9 public function method() : B {}
12 } else if ($class == 'B') {
13 class B extends A {
16 var_dump(new B);
18 class C extends B {
31 object(B)#2 (0) {
H A Dclass_order_autoload4.phpt13 } else if ($class == 'B') {
14 class B extends A {
17 var_dump(new B);
25 public function method(): B;
31 var_dump(new B);
40 object(B)#2 (0) {
42 object(B)#2 (0) {
/PHP-7.4/Zend/tests/
H A Dbug44653.phpt9 namespace B;
13 class B {
20 B::fooBar();
22 \B\fooBar();
29 B\fooBar
30 B\fooBar
H A Dbug30828.phpt31 class B extends A {
45 $b = new B();
47 B::bar();
51 #1 B->__construct() called at [%sbug30828.php:42]
53 B->__construct
55 #1 B->foo() called at [%sbug30828.php:43]
57 B->foo
59 #1 B::bar() called at [%sbug30828.php:44]
61 B::bar
H A Dbug76860.phpt13 class B extends A {
15 new B;
18 Notice: Accessing static property B::$a as non static in %sbug76860.php on line 7
20 Notice: Undefined property: B::$a in %sbug76860.php on line 7
22 Notice: Accessing static property B::$b as non static in %sbug76860.php on line 7
24 Notice: Undefined property: B::$b in %sbug76860.php on line 7
26 Notice: Accessing static property B::$c as non static in %sbug76860.php on line 7
28 Notice: Undefined property: B::$c in %sbug76860.php on line 7
H A Dbug74084.phpt7 $$A += $$B->a = &$$C;
9 $$A -= $$B->a = &$$C;
11 $$A *= $$B->a = &$$C;
13 $$A /= $$B->a = &$$C;
15 $$A **= $$B->a = &$$C;
H A Dbug60833.phpt13 class B extends A {
14 static $x = "B";
22 $t = new B();
27 object(B)#%d (4) {
35 object(B)#%d (0) {
38 string(1) "B"
H A Dbug76860_2.phpt13 class B extends A {
18 new B;
21 Notice: Accessing static property B::$a as non static in %sbug76860_2.php on line 7
23 Notice: Undefined property: B::$a in %sbug76860_2.php on line 7
25 Notice: Accessing static property B::$b as non static in %sbug76860_2.php on line 7
27 Notice: Undefined property: B::$b in %sbug76860_2.php on line 7
29 Notice: Accessing static property B::$c as non static in %sbug76860_2.php on line 7
31 Notice: Undefined property: B::$c in %sbug76860_2.php on line 7
H A Dno_class_const_propagation_in_closures.phpt16 class B {
17 const C = 'B::C';
21 var_dump($f->bindTo(new B, 'B')());
25 string(4) "B::C"
/PHP-7.4/ext/standard/tests/general_functions/
H A Dcallbacks_001.phpt14 class B extends A {
16 echo "B\n";
20 class C extends B {
32 $this->call(array('B', 'who2'));
72 $this->call(array($this, 'B::who'));
85 B
87 B
88 B|parent::who
95 B
96 B|who2
[all …]
/PHP-7.4/ext/dom/tests/
H A DDOMNode_insertBefore.phpt16 $e2 = $dom->documentElement->appendChild($dom->createElement("B"));
18 echo "Add new node B\n";
21 echo "Add new node A before B\n";
29 Add new node B
31 <root><B/></root>
32 Add new node A before B
34 <root><A/><B/></root>
/PHP-7.4/Zend/tests/traits/
H A Dlanguage005.phpt16 trait B {
21 echo 'B';
26 use A, B {
27 B::smallTalk insteadof A;
28 A::bigTalk insteadof B;
29 B::bigTalk as talk;
/PHP-7.4/tests/lang/
H A D042.phpt6 const B = 'foo';
10 $wrongClassname = 'B';
12 echo $classname::B."\n";
13 echo $wrongClassname::B."\n";
19 Fatal error: Uncaught Error: Class 'B' not found in %s042.php:%d
/PHP-7.4/tests/classes/
H A D__call_005.phpt12 class B extends A {
15 B::test2(1,'a');
21 $b = new B();
27 object(B)#1 (0) {
30 object(B)#1 (0) {
33 object(B)#1 (0) {
36 object(B)#1 (0) {
H A Dproperty_override_protected_public.phpt14 class B extends A
16 public $p = "B::p";
27 $b = new B;
33 B::p
34 B::p
H A Dproperty_override_public_public.phpt14 class B extends A
16 public $p = "B::p";
27 $b = new B;
33 B::p
34 B::p
H A Dproperty_override_protected_protected.phpt14 class B extends A
16 protected $p = "B::p";
27 $b = new B;
33 B::p
34 B::p
H A Dproperty_override_privateStatic_privateStatic.phpt14 class B extends A
16 private static $p = "B::p (static)";
26 B::showA();
27 B::showB();
32 B::p (static)
H A Dproperty_override_privateStatic_protectedStatic.phpt14 class B extends A
16 protected static $p = "B::p (static)";
26 B::showA();
27 B::showB();
32 B::p (static)
H A Dproperty_override_privateStatic_publicStatic.phpt14 class B extends A
16 public static $p = "B::p (static)";
26 B::showA();
27 B::showB();
32 B::p (static)
H A Dproperty_override_private_privateStatic.phpt14 class B extends A
16 private static $p = "B::p (static)";
27 $b = new B;
29 B::showB();
34 B::p (static)
/PHP-7.4/ext/standard/tests/strings/
H A Dsprintf_variation25.phpt69 string(11) "a-bA-B@#$&]"
84 string(11) "a-bA-B@#$&]"
99 string(11) "a-bA-B@#$&]"
114 string(11) "a-bA-B@#$&]"
129 string(11) "a-bA-B@#$&]"
144 string(11) "a-bA-B@#$&]"
159 string(11) "a-bA-B@#$&]"
174 string(11) "a-bA-B@#$&]"
189 string(11) "a-bA-B@#$&]"
204 string(11) "a-bA-B@#$&]"
[all …]

Completed in 47 milliseconds

12345678910>>...25