Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<html lang="<?= str_replace('_', '-', $app['translator']->getLocale()) ?>"> <head> ..
Decoded Output download
<html lang="<?= str_replace('_', '-', $app['translator']->getLocale()) ?>">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?= $view->render('head') ?>
</head>
<body>
<?= $view->render('content') ?>
</body>
</html>
Did this file decode correctly?
Original Code
<html lang="<?= str_replace('_', '-', $app['translator']->getLocale()) ?>">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?= $view->render('head') ?>
</head>
<body>
<?= $view->render('content') ?>
</body>
</html>
Function Calls
None |
Stats
MD5 | da7b3b0367243e1d8ab93f4b6fbab40b |
Eval Count | 0 |
Decode Time | 82 ms |