Searched refs:STD_PROP_LIST (Results 1 – 9 of 9) sorted by relevance
/PHP-5.3/Zend/tests/ |
H A D | ns_036.phpt | 10 const STD_PROP_LIST = 2; 12 function f1($x = ArrayObject::STD_PROP_LIST) { 15 function f2($x = \ArrayObject::STD_PROP_LIST) { 18 function f3($x = \A\ArrayObject::STD_PROP_LIST) { 21 function f4($x = B\ArrayObject::STD_PROP_LIST) { 24 var_dump(ArrayObject::STD_PROP_LIST); 25 var_dump(\ArrayObject::STD_PROP_LIST); 26 var_dump(B\ArrayObject::STD_PROP_LIST); 27 var_dump(\A\ArrayObject::STD_PROP_LIST);
|
H A D | ns_035.phpt | 10 function f1($x = ArrayObject::STD_PROP_LIST) { 13 function f2($x = \ArrayObject::STD_PROP_LIST) { 16 var_dump(ArrayObject::STD_PROP_LIST); 17 var_dump(\ArrayObject::STD_PROP_LIST);
|
H A D | bug42819.phpt | 31 const C6 = ArrayObject::STD_PROP_LIST; 41 static $a6 = array(ArrayObject::STD_PROP_LIST => 0); 51 static $a6 = array(ArrayObject::STD_PROP_LIST => I); 61 static $a6 = array(ArrayObject::STD_PROP_LIST => foo\I); 66 static $a1 = array(I => ArrayObject::STD_PROP_LIST); 67 static $a2 = array(foo\I => ArrayObject::STD_PROP_LIST); 69 static $a4 = array(\foo\I => ArrayObject::STD_PROP_LIST); 71 static $a6 = array(ArrayObject::STD_PROP_LIST => ArrayObject::STD_PROP_LIST); 72 static $a7 = array(E_ERROR => ArrayObject::STD_PROP_LIST); 81 static $a6 = array(ArrayObject::STD_PROP_LIST => E_ERROR); [all …]
|
/PHP-5.3/ext/spl/tests/ |
H A D | arrayObject___construct_basic3.phpt | 2 SPL: ArrayObject::__construct basic usage with ArrayObject::STD_PROP_LIST. 13 echo "\n--> Access prop on instance of ArrayObject with ArrayObject::STD_PROP_LIST:\n"; 15 $ao = new ArrayObject($c, ArrayObject::STD_PROP_LIST); 18 echo "\n--> Access prop on instance of MyArrayObject with ArrayObject::STD_PROP_LIST:\n"; 20 $ao = new MyArrayObject($c, ArrayObject::STD_PROP_LIST); 50 --> Access prop on instance of ArrayObject with ArrayObject::STD_PROP_LIST: 78 --> Access prop on instance of MyArrayObject with ArrayObject::STD_PROP_LIST:
|
H A D | arrayObject___construct_basic5.phpt | 2 SPL: ArrayObject::__construct basic usage with ArrayObject::STD_PROP_LIST|ArrayObject::ARRAY_AS_PRO… 13 echo "\n--> Access prop on instance of ArrayObject with ArrayObject::STD_PROP_LIST|ArrayObject::ARR… 15 $ao = new ArrayObject($c, ArrayObject::STD_PROP_LIST|ArrayObject::ARRAY_AS_PROPS); 18 echo "\n--> Access prop on instance of MyArrayObject with ArrayObject::STD_PROP_LIST|ArrayObject::A… 20 $ao = new MyArrayObject($c, ArrayObject::STD_PROP_LIST|ArrayObject::ARRAY_AS_PROPS); 50 --> Access prop on instance of ArrayObject with ArrayObject::STD_PROP_LIST|ArrayObject::ARRAY_AS_PR… 80 --> Access prop on instance of MyArrayObject with ArrayObject::STD_PROP_LIST|ArrayObject::ARRAY_AS_…
|
H A D | arrayObject___construct_basic6.phpt | 2 SPL: ArrayObject::__construct: check impact of ArrayObject::STD_PROP_LIST on var_dump. 14 $ao = new ArrayObject(array(1,2,3), ArrayObject::STD_PROP_LIST); 21 $ao = new MyArrayObject(array(1,2,3), ArrayObject::STD_PROP_LIST);
|
H A D | arrayObject_getFlags_basic1.phpt | 8 $ao = new ArrayObject(new ArrayObject(array(1,2,3)), ArrayObject::STD_PROP_LIST); 14 $ao = new ArrayObject(new ArrayObject(), ArrayObject::STD_PROP_LIST|ArrayObject::ARRAY_AS_PROPS);
|
H A D | arrayObject_getFlags_basic2.phpt | 5 $ao = new ArrayObject(array(), ArrayObject::STD_PROP_LIST|ArrayObject::ARRAY_AS_PROPS);
|
/PHP-5.3/ext/spl/ |
H A D | spl.php | 624 const STD_PROP_LIST = 0x00000001; define in ArrayObject 745 const STD_PROP_LIST = 0x00000001; define in ArrayIterator
|
Completed in 27 milliseconds