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