Home
last modified time | relevance | path

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

12345678910>>...21

/PHP-5.5/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-5.5/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 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-5.5/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-5.5/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: Class 'B' not found in %s042.php on line %d
/PHP-5.5/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-5.5/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-5.5/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 Dinheritance_007.phpt6 public function B () { echo "In " . __METHOD__ . "\n"; }
9 class B extends A { }
11 $rc = new ReflectionClass('B');
15 $b = new B();
25 string(1) "B"
39 In A::B
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)
/PHP-5.5/ext/reflection/tests/
H A DReflectionMethod_getDocComment_basic.phpt34 class B extends A {
39 * My Doc Comment for B::privf
48 /** My Doc Comment for B::protStatf
58 foreach (array('A', 'B') as $class) {
93 ---> Doc comment for B::f():
97 ---> Doc comment for B::privf():
99 * My Doc Comment for B::privf
103 ---> Doc comment for B::protStatf():
104 string(%d) "/** My Doc Comment for B::protStatf
112 ---> Doc comment for B::finalStatPubf():
H A Dbug47254.phpt15 class B extends A
20 $B = new B();
21 $R = new ReflectionObject($B);
32 [class] => B
/PHP-5.5/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?…
H A Dmb_encode_mimeheader_indent.phpt331 =?UTF-8?B?OS4=?="
340 =?UTF-8?B?OS4=?="
349 =?UTF-8?B?OS4=?="
358 =?UTF-8?B?OS4=?="
367 =?UTF-8?B?Nzg5Lg==?="
376 =?UTF-8?B?Nzg5Lg==?="
385 =?UTF-8?B?Nzg5Lg==?="
394 =?UTF-8?B?Nzg5Lg==?="
403 =?UTF-8?B?MzQ1Njc4OS4=?="
412 =?UTF-8?B?MzQ1Njc4OS4=?="
[all …]

Completed in 34 milliseconds

12345678910>>...21