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