Home
last modified time | relevance | path

Searched refs:a (Results 176 – 200 of 6311) sorted by path

12345678910>>...253

/PHP-5.5/Zend/tests/
H A Dbug43175.phpt10 public function __call($m, $a) {
H A Dbug43183.phpt2 Bug #43183 ("use" of the same class in difference scripts results in a fatal error)
H A Dbug43200.phpt6 interface a {
18 class x extends c implements a, b {
26 Class [ <user> class x extends c implements a, b ] {
46 Method [ <user, inherits c, prototype a> public method bar ] {
H A Dbug43332_1.phpt8 public function bar(self $a) { }
H A Dbug43332_2.phpt8 public function bar(\self $a) { }
H A Dbug43344_1.phpt6 function f1($a=bar) {
7 return $a;
9 function f2($a=array(bar)) {
10 return $a[0];
12 function f3($a=array(bar=>0)) {
13 reset($a);
14 return key($a);
H A Dbug43344_11.phpt5 function f($a=namespace\bar) {
6 return $a;
H A Dbug43344_12.phpt5 function f($a=array(namespace\bar)) {
6 return $a[0];
H A Dbug43344_13.phpt5 function f($a=array(namespace\bar=>0)) {
6 reset($a);
7 return key($a);
H A Dbug43344_3.phpt6 function f($a=Foo::bar) {
7 return $a;
H A Dbug43344_4.phpt6 function f($a=array(Foo::bar)) {
7 return $a[0];
H A Dbug43344_5.phpt6 function f($a=array(Foo::bar=>0)) {
7 reset($a);
8 return key($a);
H A Dbug43344_7.phpt6 function f($a=namespace\bar) {
7 return $a;
H A Dbug43344_8.phpt6 function f($a=array(namespace\bar)) {
7 return $a[0];
H A Dbug43344_9.phpt6 function f($a=array(namespace\bar=>0)) {
7 reset($a);
8 return key($a);
H A Dbug44069.phpt7 $string = str_repeat('This is a teststring.', 50);
H A Dbug44184.phpt7 foreach ($x as $a) {
H A Dbug44660.phpt6 $a = true;
9 echo $a->p;
12 $a->p = $s;
15 $a->p++;
18 $a->p =& $s;
21 $s =& $a->p;
24 $a->p[0] = $s;
27 var_dump($a);
H A Dbug45178.phpt10 $a =& new Foo();
H A Dbug45180.phpt14 function __call($a, $b) {
16 var_dump($a);
18 static public function __callStatic($a, $b) {
20 var_dump($a);
H A Dbug45186.phpt7 public function __call($a, $b) {
9 var_dump($a);
11 static public function __callstatic($a, $b) {
13 var_dump($a);
54 Warning: call_user_func() expects parameter 1 to be a valid callback, cannot access self:: when no …
H A Dbug45186_2.phpt7 public function __call($a, $b) {
9 var_dump($a);
48 Warning: call_user_func() expects parameter 1 to be a valid callback, class 'bar' does not have a m…
50 Warning: call_user_func() expects parameter 1 to be a valid callback, cannot access self:: when no …
H A Dbug45910.phpt8 const BBB = 'a';
9 const CCC = 'a';
13 self::BBB => 'a',
H A Dbug45910_2.phpt8 const BBB = 'a';
9 const CCC = 'a';
13 self::BBB => 'a',
H A Dbug46238.phpt6 class a {
13 $a = 'a';
16 $a::$b($a);
17 $a::$b(array());
18 $a::$b(NULL);
19 $a::$b(1);
20 $a::$b();
25 $a::$b($a);
27 $a::$b(NULL);
28 $a::$b(1);
[all …]

Completed in 35 milliseconds

12345678910>>...253