Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php $collection1 = \Vtiful\Kernel\Collection::init([ 'name' => 'viest', 'langua..
Decoded Output download
<?php
$collection1 = \Vtiful\Kernel\Collection::init([
'name' => 'viest',
'languages' => [
'php', 'c'
]
]);
$flattened = $collection1->flatten();
var_dump($flattened);
$collection2 = \Vtiful\Kernel\Collection::init([
'Apple' => [
['name' => 'iPhone 6S', 'brand' => 'Apple'],
],
'Samsung' => [
['name' => 'Galaxy S7', 'brand' => 'Samsung']
],
]);
$products = $collection2->flatten(2);
var_dump($products); ?>
Did this file decode correctly?
Original Code
<?php
$collection1 = \Vtiful\Kernel\Collection::init([
'name' => 'viest',
'languages' => [
'php', 'c'
]
]);
$flattened = $collection1->flatten();
var_dump($flattened);
$collection2 = \Vtiful\Kernel\Collection::init([
'Apple' => [
['name' => 'iPhone 6S', 'brand' => 'Apple'],
],
'Samsung' => [
['name' => 'Galaxy S7', 'brand' => 'Samsung']
],
]);
$products = $collection2->flatten(2);
var_dump($products);
Function Calls
None |
Stats
MD5 | b473941d1b1e7192c15ff577e3ea6423 |
Eval Count | 0 |
Decode Time | 84 ms |