Home
last modified time | relevance | path

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

12345678910>>...23

/PHP-7.0/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.0/Zend/tests/
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 Dbug44653.phpt9 namespace B;
13 class B {
20 B::fooBar();
22 \B\fooBar();
29 B\fooBar
30 B\fooBar
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"
/PHP-7.0/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.0/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.0/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 …]
H A Dsprintf_variation21.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 …]
/PHP-7.0/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_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_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_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)
H A Dproperty_override_private_protectedStatic.phpt14 class B extends A
16 protected static $p = "B::p (static)";
27 $b = new B;
29 B::showB();
34 B::p (static)
H A Dproperty_override_private_publicStatic.phpt14 class B extends A
16 public static $p = "B::p (static)";
27 $b = new B;
29 B::showB();
34 B::p (static)
H A Dproperty_override_protectedStatic_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_protectedStatic_publicStatic.phpt14 class B extends A
16 public static $p = "B::p (static)";
26 B::showA();
27 B::showB();
32 B::p (static)
/PHP-7.0/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.0/ext/reflection/tests/
H A DReflectionMethod_getDocComment_basic.phpt33 class B extends A {
38 * My Doc Comment for B::privf
47 /** My Doc Comment for B::protStatf
57 foreach (array('A', 'B') as $class) {
92 ---> Doc comment for B::f():
96 ---> Doc comment for B::privf():
98 * My Doc Comment for B::privf
102 ---> Doc comment for B::protStatf():
103 string(%d) "/** My Doc Comment for B::protStatf
111 ---> Doc comment for B::finalStatPubf():
/PHP-7.0/ext/mbstring/tests/
H A Dmb_encode_mimeheader_variation6.phpt12 …* Description: Converts the string to MIME "encoded-word" in the format of =?charset?(B|Q)?encoded…
32 var_dump(mb_encode_mimeheader($str, 'utf-8', 'B', $linefeed));
44 string(115) "=?UTF-8?B?zpHPhc+Ez4wgzrXOr869zrHOuSDOtc67zrvOt869zrnOus+MIM66zrXOr868?=
45 =?UTF-8?B?zrXOvc6/LiAwMTIzNDU2Nzg5Lg==?="
48 string(114) "=?UTF-8?B?zpHPhc+Ez4wgzrXOr869zrHOuSDOtc67zrvOt869zrnOus+MIM66zrXOr868?=
49 =?UTF-8?B?zrXOvc6/LiAwMTIzNDU2Nzg5Lg==?="
52 string(116) "=?UTF-8?B?zpHPhc+Ez4wgzrXOr869zrHOuSDOtc67zrvOt869zrnOus+MIM66zrXOr868?=--- =?UTF-8?B?…

Completed in 51 milliseconds

12345678910>>...23