Home
last modified time | relevance | path

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

12345678910>>...17

/PHP-5.3/ext/iconv/tests/
H A Diconv_mime_decode.phpt44 From: =?ISO-2022-JP?B?GyRCJTUbKEI=?=
45 =?ISO-2022-JP?B?GyRCJXMlVxsoQg==?=
46 =?ISO-2022-JP?B?GyRCJWtKOBsoQg==?=
47 =?ISO-2022-JP?B?GyRCO3pOcxsoQg==?=
48 =?ISO-2022-JP?B?GyRCJTUlcxsoQg==?=
49 =?ISO-2022-JP?B?GyRCJVclaxsoQg==?=
50 =?ISO-2022-JP?B?GyRCSjg7ehsoQg==?=
51 =?ISO-2022-JP?B?GyRCTnNGfBsoQg==?=
52 =?ISO-2022-JP?B?GyRCS1w4bBsoQg==?=
53 =?ISO-2022-JP?B?GyRCJUYlLRsoQg==?=
[all …]
/PHP-5.3/ext/reflection/tests/
H A DReflectionClass_getProperty_004.phpt18 class B extends A {
19 public $pubC = "pubC in B";
23 public $pubB = "pubB in B";
28 class C extends B {
79 showInfo("B::pubC");
80 showInfo("B::protC");
81 showInfo("B::privC");
121 %unicode|string%(1) "B"
129 %unicode|string%(1) "B"
189 %unicode|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
H A DReflectionProperty_getDocComment_basic.phpt24 class B extends A {
32 foreach(array('A', 'B') as $class) {
75 ---> Doc comment for B::$a:
79 ---> Doc comment for B::$b:
83 ---> Doc comment for B::$c:
87 ---> Doc comment for B::$e:
91 ---> Doc comment for B::$d:
97 ---> Doc comment for B::$f:
H A DReflectionClass_isInstance_basic.phpt6 class B extends A {}
13 $classes = array("A", "B", "C", "I", "X");
16 "myB" => new B,
36 is myA a B? bool(false)
37 is myB a B? bool(true)
38 is myC a B? bool(false)
39 is myX a B? bool(false)
H A DReflectionClass_newInstance_001.phpt14 class B {
16 echo "In constructor of class B with args $a, $b\n";
36 $rcB = new ReflectionClass('B');
81 Warning: Missing argument 1 for B::__construct() in %s on line 9
83 Warning: Missing argument 2 for B::__construct() in %s on line 9
88 In constructor of class B with args ,
89 In constructor of class B with args x, 123
90 object(B)#%d (0) {
92 object(B)#%d (0) {
H A DReflectionClass_getNamespaceName.phpt5 namespace A\B;
15 $function = new \ReflectionClass('A\\B\\Foo');
27 string(7) "A\B\Foo"
28 string(3) "A\B"
H A DReflectionFunction_getNamespaceName.phpt5 namespace A\B;
14 $function = new \ReflectionFunction('A\\B\\foo');
26 string(7) "A\B\foo"
27 string(3) "A\B"
H A Dproperty_exists.phpt140 ===B===
141 B::$a
143 B::$b
145 B::$c
147 B::$d
149 B::$e
152 B::$a
154 B::$b
156 B::$c
158 B::$d
[all …]
/PHP-5.3/ext/standard/tests/strings/
H A Dsprintf_variation27.phpt21 "%30c", "%[a-bA-B@#$&]", "%*c"
51 string(11) "a-bA-B@#$&]"
66 string(11) "a-bA-B@#$&]"
81 string(11) "a-bA-B@#$&]"
96 string(11) "a-bA-B@#$&]"
111 string(11) "a-bA-B@#$&]"
126 string(11) "a-bA-B@#$&]"
141 string(11) "a-bA-B@#$&]"
156 string(11) "a-bA-B@#$&]"
171 string(11) "a-bA-B@#$&]"
H A Dsprintf_variation22.phpt29 "%30c", "%[a-bA-B@#$&]", "%*c"
59 string(11) "a-bA-B@#$&]"
74 string(11) "a-bA-B@#$&]"
89 string(11) "a-bA-B@#$&]"
104 string(11) "a-bA-B@#$&]"
119 string(11) "a-bA-B@#$&]"
134 string(11) "a-bA-B@#$&]"
149 string(11) "a-bA-B@#$&]"
164 string(11) "a-bA-B@#$&]"
H A Dchunk_split.phpt10 $a=str_repeat("B", 65535);
12 $c=str_repeat("B", 65535);
15 $a=str_repeat("B", 65537);
17 $c=str_repeat("B", 65537);
/PHP-5.3/Zend/tests/
H A Dbug33171.phpt10 class B extends A
12 private $c = "B's c";
23 $x = new B;
27 c => B's c
H A Dbug48215.phpt15 class B extends A
27 $b = new B();
32 B::__construct
34 B::A
H A Dns_060.phpt6 use Bar\A as B;
8 $a = new B;
13 use Foo\A as B;
14 $a = new B;
/PHP-5.3/tests/classes/
H A Dproperty_override_private_private.phpt14 class B extends A
16 private $p = "B::p";
27 $b = new B;
34 B::p
H A Dproperty_override_private_protected.phpt14 class B extends A
16 protected $p = "B::p";
27 $b = new B;
34 B::p
H A Dproperty_override_private_public.phpt14 class B extends A
16 public $p = "B::p";
27 $b = new B;
34 B::p
H A Dproperty_override_privateStatic_private.phpt14 class B extends A
16 private $p = "B::p";
26 $b = new B;
33 B::p
H A Dproperty_override_privateStatic_protected.phpt14 class B extends A
16 protected $p = "B::p";
26 $b = new B;
33 B::p
H A Dproperty_override_privateStatic_public.phpt14 class B extends A
16 public $p = "B::p";
26 $b = new B;
33 B::p
H A Dproperty_override_protectedStatic_private.phpt14 class B extends A
16 private $p = "B::p";
26 $b = new B;
32 Fatal error: Cannot redeclare static A::$p as non static B::$p in %s on line 18
H A Dproperty_override_protectedStatic_protected.phpt14 class B extends A
16 protected $p = "B::p";
26 $b = new B;
32 Fatal error: Cannot redeclare static A::$p as non static B::$p in %s on line 18
/PHP-5.3/
H A DREADME.namespaces64 namespace A\B\C;
73 namespace A\B\C;
87 it is translated to "A\B\C\D\e()".
90 is translated to "new A\B\C()".
107 A\B\foo() first tries to call function foo() from namespace A\B, then
111 namespace. So "new A\B\C()" refers to class C from namespace A\B.
124 new B(); // first tries to create object of class "B" defined in namespace "A"
125 // then creates object of internal class "B"
126 new \B(); // creates object of class "B" defined in global scope
137 B\foo(); // first tries to call function "foo" from namespace "A\B"
[all …]
/PHP-5.3/ext/soap/tests/
H A Dclassmap003.phpt16 class B extends A {
25 return new B(5);
46 array('classmap'=>array('A'=>'A','B'=>'B')));
50 B Object

Completed in 22 milliseconds

12345678910>>...17