|
SplFixedArray::fromArrayImport a PHP array in a SplFixedArray instance Description
public static SplFixedArray SplFixedArray::fromArray(array
$array, bool $preserveKeys = true)
Import the PHP array Parameters
Return ValuesReturns an instance of SplFixedArray containing the array content. Examples
Example #1 SplFixedArray::fromArray example The above example will output:
object(SplFixedArray)#1 (4) {
[0]=>
int(2)
[1]=>
int(1)
[2]=>
NULL
[3]=>
int(3)
}
object(SplFixedArray)#2 (3) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(3)
}
|