Searched refs:STD_PROP_LIST (Results 1 – 12 of 12) sorted by relevance
/PHP-8.2/Zend/tests/ |
H A D | ns_036.phpt | 8 const STD_PROP_LIST = 2; 10 function f1($x = ArrayObject::STD_PROP_LIST) { 13 function f2($x = \ArrayObject::STD_PROP_LIST) { 16 function f3($x = \A\ArrayObject::STD_PROP_LIST) { 19 function f4($x = B\ArrayObject::STD_PROP_LIST) { 22 var_dump(ArrayObject::STD_PROP_LIST); 23 var_dump(\ArrayObject::STD_PROP_LIST); 24 var_dump(B\ArrayObject::STD_PROP_LIST); 25 var_dump(\A\ArrayObject::STD_PROP_LIST);
|
H A D | ns_035.phpt | 8 function f1($x = ArrayObject::STD_PROP_LIST) { 11 function f2($x = \ArrayObject::STD_PROP_LIST) { 14 var_dump(ArrayObject::STD_PROP_LIST); 15 var_dump(\ArrayObject::STD_PROP_LIST);
|
H A D | bug42819.phpt | 29 const C6 = ArrayObject::STD_PROP_LIST; 39 static $a6 = array(ArrayObject::STD_PROP_LIST => 0); 49 static $a6 = array(ArrayObject::STD_PROP_LIST => I); 59 static $a6 = array(ArrayObject::STD_PROP_LIST => foo\I); 64 static $a1 = array(I => ArrayObject::STD_PROP_LIST); 65 static $a2 = array(foo\I => ArrayObject::STD_PROP_LIST); 67 static $a4 = array(\foo\I => ArrayObject::STD_PROP_LIST); 69 static $a6 = array(ArrayObject::STD_PROP_LIST => ArrayObject::STD_PROP_LIST); 70 static $a7 = array(E_ERROR => ArrayObject::STD_PROP_LIST); 79 static $a6 = array(ArrayObject::STD_PROP_LIST => E_ERROR); [all …]
|
/PHP-8.2/ext/spl/tests/ |
H A D | bug75242.phpt | 18 ["STD_PROP_LIST"]=> 24 ["STD_PROP_LIST"]=> 30 ["STD_PROP_LIST"]=>
|
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: 80 --> 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… 78 --> Access prop on instance of MyArrayObject with ArrayObject::STD_PROP_LIST|ArrayObject::ARRAY_AS_…
|
H A D | ArrayObject_clone_other_std_props.phpt | 2 Clone ArrayObject using other with STD_PROP_LIST 6 $a = new ArrayObject([1, 2, 3], ArrayObject::STD_PROP_LIST);
|
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_std_props_no_recursion.phpt | 2 Don't recurse into USE_OTHER when checking for STD_PROP_LIST 6 $a = new ArrayObject([1, 2, 3], ArrayObject::STD_PROP_LIST);
|
H A D | arrayObject_getFlags_basic2.phpt | 5 $ao = new ArrayObject(array(), ArrayObject::STD_PROP_LIST|ArrayObject::ARRAY_AS_PROPS);
|
/PHP-8.2/ext/spl/ |
H A D | spl_array.stub.php | 11 const STD_PROP_LIST = UNKNOWN; define in ArrayObject 99 public const STD_PROP_LIST = UNKNOWN; define in ArrayIterator
|
Completed in 25 milliseconds