Home
last modified time | relevance | path

Searched refs:b (Results 251 – 275 of 2383) sorted by path

1...<<11121314151617181920>>...96

/PHP-5.5/Zend/tests/
H A Dobjects_024.phpt9 public function __set($a, $b) {
10 self::$bar[] = $b;
H A Dobjects_025.phpt20 $b = 'aaaaa1';
21 $a->$b();
22 $a::$b();
24 $b = ' ';
25 $a->$b();
26 $a::$b();
28 $b = str_repeat('a', 10000);
29 $a->$b();
30 $a::$b();
32 $b = NULL;
[all …]
H A Dobjects_028.phpt7 public function __call($a, $b) {
H A Dobjects_029.phpt7 public function __set($a, $b) {
16 public function __set($a, $b) {
H A Dobjects_030.phpt7 public function __set($a, $b) {
16 public function __set($a, $b) {
H A Dstr_offset_001.phpt30 string(1) "b"
35 string(1) "b"
43 string(1) "b"
48 string(1) "b"
H A Dsub_001.phpt7 $b = array(1);
9 $c = $a - $b;
H A Dtrait_exists_003.phpt8 abstract class b { }
15 var_dump(trait_exists('b'));
H A Dunset_cv08.phpt6 $b = "ok\n";
9 echo $b;
H A Dxor_001.phpt7 $b = array();
9 $c = $a ^ $b;
/PHP-5.5/Zend/tests/traits/
H A Dbug60145.phpt13 public function b();
H A Dbug60217b.phpt11 public abstract function foo($a, $b = 0);
26 Fatal error: Declaration of TBroken2::foo($a, $b = 0) must be compatible with TBroken1::foo($a) in …
H A Dbug60217c.phpt7 public abstract function foo($a, $b = 0);
26 Fatal error: Declaration of TBroken2::foo($a) must be compatible with TBroken1::foo($a, $b = 0) in …
H A Dbug61998.phpt53 $b = new Bar();
54 $b->newFunc(); //from T1
55 $b->func(); //from Bar
56 $b->func2(); //from Bar
57 $b->newFunc2(); //from T2
58 $b->newFunc3(); //from T2
59 $b->func3(); //from Bar
H A Dconflict003.phpt18 echo 'b';
H A Derror_011.phpt13 trait b {
18 use foo, c, b;
H A Dget_declared_traits_001.phpt7 interface b { }
H A Dget_declared_traits_002.phpt8 interface b { }
H A Dget_declared_traits_003.phpt7 interface b { }
H A Dlanguage005.phpt18 echo 'b';
H A Dlanguage009.phpt1 --TEST--
2 In instead definitions all trait whose methods are meant to be hidden can be listed.
3 --FILE--
4 <?php
5 error_reporting(E_ALL);
6
7 trait A {
8 public function foo() {
9 echo 'a';
10 }
[all …]
H A Dproperty008.phpt40 $b = new SubclassB;
41 var_dump($b);
H A Dproperty009.phpt40 $b = new SubclassB;
41 var_dump($b);
/PHP-5.5/Zend/tests/traits/bugs/
H A Dalias-semantics.phpt14 use THello { a as b; }
19 $test->b();
H A Dalias-semantics02.phpt16 use THello { THello::a as b; }
21 $test->b();

Completed in 38 milliseconds

1...<<11121314151617181920>>...96