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 use yii\bootstrap\Html; use yii\helpers\Inflector; use yii\helpers\VarDumper; /* @..
Decoded Output download
<?php
use yiiootstrap\Html;
use yii\helpers\Inflector;
use yii\helpers\VarDumper;
/* @var $this yii\web\View */
/* @var $icuData array */
if (isset($icuData['%%Parent'])) {
echo '<p>Parent Locale: ' . Html::a(Html::encode($icuData['%%Parent']), ['', 'locale' => $icuData['%%Parent']]) . '</p>';
unset($icuData['%%Parent']);
}
foreach($icuData as $key => $data) {
$id = 'icu-data-' . Inflector::slug($key);
echo "<h3 id=\"$id\">" . Html::encode($key) . " <small><a href=\"#$id\">#</a></small></h3>";
echo '<pre>';
VarDumper::dump($data, 10, true);
echo '</pre>';
}
?>
Did this file decode correctly?
Original Code
<?php
use yii\bootstrap\Html;
use yii\helpers\Inflector;
use yii\helpers\VarDumper;
/* @var $this yii\web\View */
/* @var $icuData array */
if (isset($icuData['%%Parent'])) {
echo '<p>Parent Locale: ' . Html::a(Html::encode($icuData['%%Parent']), ['', 'locale' => $icuData['%%Parent']]) . '</p>';
unset($icuData['%%Parent']);
}
foreach($icuData as $key => $data) {
$id = 'icu-data-' . Inflector::slug($key);
echo "<h3 id=\"$id\">" . Html::encode($key) . " <small><a href=\"#$id\">#</a></small></h3>";
echo '<pre>';
VarDumper::dump($data, 10, true);
echo '</pre>';
}
Function Calls
None |
Stats
MD5 | f4028b7fc53f5e802ab84cab22c574ab |
Eval Count | 0 |
Decode Time | 89 ms |