blob: f57fe78fb8f3a8cabb845caaeff12acc4fb44d1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--TEST--
Tries to create a SplFixedArray using the fromArray() function and a multi dimentional array.
--CREDITS--
Philip Norton philipnorton42@gmail.com
--FILE--
<?php
$array = SplFixedArray::fromArray(array(array('1')));
var_dump($array);
?>
--EXPECTF--
object(SplFixedArray)#1 (1) {
[0]=>
array(1) {
[0]=>
%string|unicode%(1) "1"
}
}
|