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