blob: ecae2ab762e1a0b3de2361e9b3bb746f30375f00 (
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|unicode%(1) "2"
[2]=>
bool(false)
}
|