summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFixedArray_fromarray_param_multiarray.phpt
blob: 659f61c80d84a72c4145d53e6f2940116906d500 (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 dimensional 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"
  }
}