summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFixedArray_fromarray_indexes.phpt
blob: 8ec02b8d4901d35604de5146475b9a4d84a968d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
Create a SplFixedArray from an array using the fromArray() function use the default behaviour of preserve the indexes.
--CREDITS--
Philip Norton philipnorton42@gmail.com
--FILE--
<?php
$array = SplFixedArray::fromArray(array(1 => 1,
                                        2 => '2',
                                        3 => false));
var_dump($array);
?>
--EXPECT--
object(SplFixedArray)#1 (4) {
  [0]=>
  NULL
  [1]=>
  int(1)
  [2]=>
  string(1) "2"
  [3]=>
  bool(false)
}