Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- Tries to create a SplFixedArray using the fromArray() function and a multi dimens..
Decoded Output download
--TEST--
Tries to create a SplFixedArray using the fromArray() function and a multi dimensional array.
--CREDITS--
Philip Norton [email protected]
--FILE--
<?php
$array = SplFixedArray::fromArray(array(array('1')));
var_dump($array);
?>
--EXPECT--
object(SplFixedArray)#1 (1) {
[0]=>
array(1) {
[0]=>
string(1) "1"
}
}
Did this file decode correctly?
Original Code
--TEST--
Tries to create a SplFixedArray using the fromArray() function and a multi dimensional array.
--CREDITS--
Philip Norton [email protected]
--FILE--
<?php
$array = SplFixedArray::fromArray(array(array('1')));
var_dump($array);
?>
--EXPECT--
object(SplFixedArray)#1 (1) {
[0]=>
array(1) {
[0]=>
string(1) "1"
}
}
Function Calls
None |
Stats
MD5 | c0433b74a54a4cacf98dc740244d9379 |
Eval Count | 0 |
Decode Time | 129 ms |