Home
last modified time | relevance | path

Searched refs:B (Results 1 – 25 of 504) sorted by path

12345678910>>...21

/PHP-5.5/
H A DEXTENSIONS133 PRIMARY MAINTAINER: Marcus B�rger <helly@php.net>,Christopher Jones <sixd@php.net>, Pierre-Alain J…
470 PRIMARY MAINTAINER: Greg Beaver <cellog@php.net>, Marcus B�rger <helly@php.net>, Steph Fox <sfox@p…
496 PRIMARY MAINTAINER: Marcus B�rger <helly@php.net>, Johannes Schl�ter <johannes@php.net>
H A DNEWS5941 . Added intl extension for Internationalization. (Ed B., Vladimir I.,
8870 - Added missing support for 'B' format identifier to date() function. (Ilia)
9894 - Fixed bug #31110 (PHP 4.3.10 does not compile on Tru64 UNIX 5.1B). (Derick)
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.5/Zend/
H A DZend.dsp542 flex -B -i -Sflex.skl -Pini_ -ozend_ini_scanner.c zend_ini_scanner.l
H A DZendTS.dsp634 flex -B -i -Sflex.skl -Pini_ -ozend_ini_scanner.c zend_ini_scanner.l
644 flex -B -i -Sflex.skl -Pini_ -ozend_ini_scanner.c zend_ini_scanner.l
654 flex -B -i -Sflex.skl -Pini_ -ozend_ini_scanner.c zend_ini_scanner.l
664 flex -B -i -Sflex.skl -Pini_ -ozend_ini_scanner.c zend_ini_scanner.l
681 flex -B -i -Sflex.skl -Pzend -ozend_language_scanner.c zend_language_scanner.l
691 flex -B -i -Sflex.skl -Pzend -ozend_language_scanner.c zend_language_scanner.l
701 flex -B -i -Sflex.skl -Pzend -ozend_language_scanner.c zend_language_scanner.l
711 flex -B -i -Sflex.skl -Pzend -ozend_language_scanner.c zend_language_scanner.l
/PHP-5.5/Zend/tests/
H A Dbug28442.phpt22 ClassB::$prop = 'B';
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 Dbug30451.phpt16 class B extends A {
30 new B;
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 Dbug31098.phpt27 echo $simpleString["wrong"] === "B"?"ok\n":"bug\n";
28 echo $simpleString["0"] === "B"?"ok\n":"bug\n";
H A Dbug32290.phpt87 echo "\n===B===\n";
105 ===B===
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 Dbug33732.phpt12 class B extends A implements iA {
17 echo B::cA;
H A Dbug34678.phpt11 class B extends A {
17 if (is_callable(array('B', 'foo'))) {
18 call_user_func(array('B', 'foo'));
H A Dbug34893.phpt14 class B {
24 $b = new B;
H A Dbug37212.phpt21 class B extends A
31 $B = new B("B");
32 var_dump($B);
36 $B->copyValue($C);
38 var_dump($B);
43 object(B)#%d (1) {
45 string(1) "B"
51 object(B)#%d (1) {
H A Dbug37715.phpt7 'A', 'B', 'C', 'D',
H A Dbug38772.phpt16 class B extends A {
35 $b = new B();
H A Dbug40784.phpt10 class B extends A {
17 $b = new B;
H A Dbug41633_1.phpt6 const A = self::B;
7 const B = "ok";
H A Dbug41633_2.phpt6 const A = self::B;
11 Fatal error: Undefined class constant 'self::B' in %sbug41633_2.php on line 5
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
H A Dbug41633_4.phpt6 const A = self::B;
7 const B = "ok";
H A Dbug42211.phpt7 var_dump(property_exists('B', 'publicBar'));
8 var_dump(property_exists('B', 'protectedBar'));
9 var_dump(property_exists('B', 'privateBar'));
13 class B extends A {
21 $b = new B();
H A Dbug42937.phpt17 class B extends A {
23 B::test5();
31 $b = new B();

Completed in 52 milliseconds

12345678910>>...21