summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFixedArray_fromarray_non_indexes.phpt
blob: 79f74cd5e7ff2152fd0bd1912e73ed233141b21c (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);
?>
--EXPECTF--
object(SplFixedArray)#1 (3) {
  [0]=>
  int(1)
  [1]=>
  string(1) "2"
  [2]=>
  bool(false)
}