Home
last modified time | relevance | path

Searched refs:B (Results 76 – 100 of 623) sorted by relevance

12345678910>>...25

/PHP-7.4/tests/classes/
H A Dproperty_override_public_privateStatic.phpt14 class B extends A
16 private static $p = "B::p (static)";
27 $b = new B;
29 B::showB();
32 Fatal error: Cannot redeclare non static A::$p as static B::$p in %s on line 18
H A Dinheritance_007.phpt6 public function B () { echo "In " . __METHOD__ . "\n"; }
9 class B extends A { }
11 $rc = new ReflectionClass('B');
15 $b = new B();
26 string(1) "B"
40 In A::B
H A Dconstants_basic_003.phpt6 class B
19 var_dump(B::$a);
20 var_dump(B::$c);
21 var_dump(B::ca);
22 var_dump(B::cc);
/PHP-7.4/Zend/tests/
H A Dbug42211.phpt7 var_dump(property_exists('B', 'publicBar'));
8 var_dump(property_exists('B', 'protectedBar'));
9 var_dump(property_exists('B', 'privateBar'));
13 class B extends A {
21 $b = new B();
H A Dbug45805.phpt19 class B {
26 $m = new ReflectionMethod('B', 'foo');
35 $o = new B;
42 #1 [internal function]: B->foo()
43 #2 %sbug45805.php(%d): ReflectionMethod->invoke(Object(B))
44 #3 %sbug45805.php(%d): B->bar()
H A Dconstant_expressions_classes.phpt15 'B'=> 'class B extends A { const HW = parent::HW." extended by B"; }',
19 'E' => 'class E extends B { use trE; }',
32 printf("B::HW = %s\n", B::HW);
40 B::HW = this is A extended by B
42 E::getHW() = this is A extended by B
H A Dbug66252.phpt8 class B extends A {
9 const BHW = parent::HW . " extended by B";
11 const C = B::BHW;
14 this is A extended by B
H A Duse_late_binding_conflict.phpt7 class B extends A {}
9 use Foo\B;
13 Fatal error: Cannot use Foo\B as B because the name is already in use in %s on line %d
H A Dget_class_vars_005.phpt11 class B extends A {
15 var_dump(get_class_vars('B'));
20 var_dump(get_class_vars('B'));
22 new B;
H A Dbug46246.phpt20 class B extends A
29 $b = new B;
38 Hello from B
39 Hello from B
40 Hello from B
H A Dbug33171.phpt10 class B extends A
12 private $c = "B's c";
23 $x = new B;
27 c => B's c
/PHP-7.4/ext/reflection/tests/
H A DReflectionClass_getProperty_004.phpt18 class B extends A {
28 class C extends B {
79 showInfo("B::pubC");
80 showInfo("B::protC");
81 showInfo("B::privC");
121 string(1) "B"
123 string(9) "pubB in B"
129 string(1) "B"
189 string(1) "B"
197 string(1) "B"
[all …]
H A DReflectionClass_implementsInterface_001.phpt10 class B extends A {}
15 $classNames = array('A', 'B', 'C', 'I1', 'I2');
72 Does A implement B?
84 Does B implement A?
87 Does B implement B?
90 Does B implement C?
93 Does B implement I1?
96 Does B implement I2?
102 Does C implement B?
117 Does I1 implement B?
[all …]
H A DReflectionObject_isInstance_basic.phpt6 class B extends A {}
9 $classes = array("A", "B", "X");
12 "myB" => new B,
28 is myA a B? bool(false)
29 is myB a B? bool(true)
30 is myX a B? bool(false)
H A Dbug47254.phpt15 class B extends A
20 $B = new B();
21 $R = new ReflectionObject($B);
29 …me name as their class will not be constructors in a future version of PHP; B has a deprecated con…
35 [class] => B
H A DReflectionClass_toString_002.phpt11 Class B extends A {
14 Class C extends B {
20 foreach (array('A', 'B', 'C', 'D') as $class) {
52 ----( Reflection class B: )----
53 Class [ <user> class B extends A ] {
77 Class [ <user> class C extends B ] {
93 Method [ <user, inherits B, prototype A> public method f ] {
117 Method [ <user, overwrites B, prototype A> public method f ] {
H A DReflectionMethod_getDeclaringClass_basic.phpt10 class B extends A {
14 $methodInfo = new ReflectionMethod('B', 'foo');
17 $methodInfo = new ReflectionMethod('B', 'bar');
28 string(1) "B"
H A DReflectionClass_getProperty_003.phpt18 class B extends A {
28 class C extends B {
79 showInfo("B::pubC");
80 showInfo("B::protC");
81 showInfo("B::privC");
121 string(1) "B"
123 string(9) "pubB in B"
129 string(1) "B"
189 string(1) "B"
197 string(1) "B"
[all …]
H A Dbug53915.phpt8 const B = self::A;
17 const B = self::A;
21 print_r($rc->getConstant('B'));
26 [B] => 1
/PHP-7.4/ext/mbstring/tests/
H A Dmb_encode_mimeheader_indent.phpt330 =?UTF-8?B?OS4=?="
339 =?UTF-8?B?OS4=?="
348 =?UTF-8?B?OS4=?="
357 =?UTF-8?B?OS4=?="
366 =?UTF-8?B?Nzg5Lg==?="
375 =?UTF-8?B?Nzg5Lg==?="
384 =?UTF-8?B?Nzg5Lg==?="
393 =?UTF-8?B?Nzg5Lg==?="
402 =?UTF-8?B?MzQ1Njc4OS4=?="
411 =?UTF-8?B?MzQ1Njc4OS4=?="
[all …]
H A Dbug49354.phpt7 $crap = 'AåBäCöDü';
16 string(12) "AåBäCöDü"
17 string(11) "åBäCöDü"
18 string(11) "åBäCöDü"
19 string(9) "BäCöDü"
/PHP-7.4/Zend/tests/traits/
H A Dstatic_003.phpt19 class B extends A {
20 protected static $test = "Test B";
23 echo B::test();
27 Test B
/PHP-7.4/ext/pcre/tests/
H A Dpreg_filter.phpt6 $subject = array('1', 'a', '2', 'b', '3', 'A', 'B', '4');
8 $replace = array('A:$0', 'B:$0', 'C:$0');
19 string(5) "B:C:a"
23 string(3) "B:b"
/PHP-7.4/ext/standard/tests/strings/
H A Dsprintf_variation24.phpt63 string(11) "a-bA-B@#$&]"
78 string(11) "a-bA-B@#$&]"
93 string(11) "a-bA-B@#$&]"
108 string(11) "a-bA-B@#$&]"
123 string(11) "a-bA-B@#$&]"
138 string(11) "a-bA-B@#$&]"
153 string(11) "a-bA-B@#$&]"
168 string(11) "a-bA-B@#$&]"
183 string(11) "a-bA-B@#$&]"
198 string(11) "a-bA-B@#$&]"
[all …]
/PHP-7.4/ext/standard/tests/
H A Dforward_static_call_array.phpt24 class B extends A {
26 const NAME = 'B';
36 B::test('foo');
39 B
40 B more,args

Completed in 88 milliseconds

12345678910>>...25