Home
last modified time | relevance | path

Searched refs:B (Results 101 – 125 of 409) sorted by relevance

12345678910>>...17

/PHP-5.3/tests/classes/
H A Dproperty_override_protectedStatic_public.phpt14 class B extends A
16 public $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_publicStatic_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_publicStatic_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
H A Dproperty_override_publicStatic_public.phpt14 class B extends A
16 public $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_public_private.phpt14 class B extends A
16 private $p = "B::p";
27 $b = new B;
33 Fatal error: Access level to B::$p must be public (as in class A) in %s on line 18
H A Dproperty_override_public_protected.phpt14 class B extends A
16 protected $p = "B::p";
27 $b = new B;
33 Fatal error: Access level to B::$p must be public (as in class A) in %s on line 18
H A Dproperty_override_protected_private.phpt14 class B extends A
16 private $p = "B::p";
27 $b = new B;
33 Fatal error: Access level to B::$p must be protected (as in class A) or weaker in %s on line 18
/PHP-5.3/Zend/tests/
H A Dget_class_methods_001.phpt12 class B extends A {
17 var_dump(get_class_methods('B'));
23 var_dump(get_class_methods('B'));
26 B::test();
H A Dget_class_methods_002.phpt11 class B implements A {
17 var_dump(get_class_methods('B'));
23 new B;
27 Strict Standards: Redefining already defined constructor for class B in %s on line %d
H A Dbug30140.phpt11 class B extends A {
20 var_dump(B::$test1);
21 var_dump(B::$test2);
22 var_dump(B::$test3);
H A Dbug47343.phpt14 $this->data['foo'] = new B($this);
15 $this->data['bar'] = new B($this);
21 class B
23 public function B($A)
H A Dbug41633_3.phpt6 const A = Foo::B;
7 const B = Foo::A;
12 Fatal error: Cannot declare self-referencing constant 'Foo::B' in %sbug41633_3.php on line %d
/PHP-5.3/ext/reflection/tests/
H A DReflectionClass_getConstructor_basic.phpt36 class B {
37 function B() {}
40 class C extends B {
52 'OldAndNewCtor', 'NewAndOldCtor', 'B', 'C', 'D1', 'D2', 'X', 'Y');
74 Constructor of B: B
H A DReflectionClass_newInstanceArgs_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_isSubclassOf_basic.phpt6 class B extends A {}
7 class C extends B {}
32 Is A a subclass of B?
44 Is B a subclass of A?
47 Is B a subclass of B?
50 Is B a subclass of C?
53 Is B a subclass of I?
56 Is B a subclass of X?
62 Is C a subclass of B?
77 Is I a subclass of B?
[all …]
H A DReflectionObject_getConstructor_basic.phpt36 class B {
37 function B() {}
40 class C extends B {
52 'OldAndNewCtor', 'NewAndOldCtor', 'B', 'C', 'D1', 'D2', 'X', 'Y');
74 Constructor of B: B
H A DReflectionClass_getDocComment_001.phpt19 /** My DocComment for B */
20 class B extends A { }
22 class C extends B {}
47 $classes = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'I');
71 ---> Doc comment for class B:
72 string(26) "/** My DocComment for B */"
H A Dbug48336.phpt8 class B extends A {
12 class C extends B {
40 B => B
H A Dbug39067.phpt10 class B extends A {
14 class C extends B {
21 $rc = new ReflectionClass('B');
42 string(1) "B"
/PHP-5.3/ext/pdo/tests/
H A Dpdo_011.phpt122 test(2,B)
134 string(1) "B"
149 Test1::factory(2,B)
150 Test1::__construct(2,B)
168 string(1) "B"
187 Test1::factory(2,B)
188 Test1::__construct(2,B)
206 string(1) "B"
237 string(1) "B"
263 string(1) "B"
[all …]
/PHP-5.3/ext/mbstring/oniguruma/doc/
H A DFAQ.ja11 ����åɥ����դˤ���ˤϡ��ʲ���(A)��(B)�Τɤ��餫��Ԥʤ���
28 (B) Application Layer
53 ��������ˡ�ˤĤ��ơ��ʲ�(A)��(B)���������ޤ���
107 (B) ���ץꥱ������������б�������
/PHP-5.3/ext/standard/tests/strings/
H A Dbug27675.phpt5 echo str_ireplace('/*<B>', '<B>', '/*<b> I am a comment</b>*/');
8 <B> I am a comment</b>*/
/PHP-5.3/ext/soap/tests/
H A Dclassmap004.phpt25 class B extends A {
33 return new B(5);
54 array('classmap'=>array('A'=>'A','B'=>'B')));
58 B Object
/PHP-5.3/tests/func/
H A D006.phpt15 echo 'B';
21 var_dump( $b ); // 2B
25 string(2) "2B"
/PHP-5.3/ext/mbstring/tests/
H A Dmb_encode_mimeheader_basic2.phpt13 …* Description: Converts the string to MIME "encoded-word" in the format of =?charset?(B|Q)?encoded…
37 var_dump(mb_encode_mimeheader($input, $outEncoding, 'B'));
49 string(99) "=?UTF-8?B?5pel5pys6Kqe44OG44Kt44K544OI44Gn44GZ44CCMDEyMzTvvJXvvJbvvJc=?=
50 =?UTF-8?B?77yY77yZ44CC?="
58 string(99) "=?UTF-8?B?5pel5pys6Kqe44OG44Kt44K544OI44Gn44GZ44CCMDEyMzTvvJXvvJbvvJc=?=
59 =?UTF-8?B?77yY77yZ44CC?="
67 string(99) "=?UTF-8?B?5pel5pys6Kqe44OG44Kt44K544OI44Gn44GZ44CCMDEyMzTvvJXvvJbvvJc=?=
68 =?UTF-8?B?77yY77yZ44CC?="

Completed in 24 milliseconds

12345678910>>...17