blob: 7a93a59e3d8cb9773bb37b3f2e93b60fcbbd03ea [file] [log] [blame]
<?php
$shortArray = [
[
'test',
],
'test1',
[
'test2',
],
['test3'],
array('test4'),
];
$array = array(
array(
'test',
),
'test1',
array(
'test2',
),
array('test3'),
array('test4'),
);