Home
last modified time | relevance | path

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

12345678910>>...17

/PHP-5.3/Zend/tests/
H A Dbug44653.phpt9 namespace B;
13 class B {
20 B::fooBar();
22 \B\fooBar();
29 B\fooBar
30 B\fooBar
/PHP-5.3/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.3/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.3/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.3/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)
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)
H A Dproperty_override_publicStatic_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 Dconstants_basic_004.phpt8 public static $sa_x = array(B::KEY => B::VALUE);
9 public $a_x = array(B::KEY => B::VALUE);
12 class B
22 class C extends B
32 // Should also include inherited properties from B.
36 var_dump(X::$sa_x, B::$sa_b, C::$sa_b, C::$sa_c_parent, C::$sa_c_self);
40 $b = new B;
76 object(B)#%d (1) {
/PHP-5.3/ext/reflection/tests/
H A DReflectionMethod_getDocComment_basic.phpt31 class B extends A {
36 * My Doc Comment for B::privf
45 /** My Doc Comment for B::protStatf
55 foreach (array('A', 'B') as $class) {
90 ---> Doc comment for B::f():
94 ---> Doc comment for B::privf():
96 * My Doc Comment for B::privf
100 ---> Doc comment for B::protStatf():
101 string(%d) "/** My Doc Comment for B::protStatf
109 ---> Doc comment for B::finalStatPubf():
H A Dbug47254.phpt15 class B extends A
20 $B = new B();
21 $R = new ReflectionObject($B);
33 [class] => B
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 …]
/PHP-5.3/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 43 milliseconds

12345678910>>...17