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 Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\O..
Decoded Output download
<?php
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
// Ensure that closing tag is applied once
return function (InputInterface $input, OutputInterface $output) {
$output->setDecorated(true);
$output = new SymfonyStyle($input, $output);
$output->write('<question>do you want <comment>something</>');
$output->writeln('?</>');
};
?>
Did this file decode correctly?
Original Code
<?php
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
// Ensure that closing tag is applied once
return function (InputInterface $input, OutputInterface $output) {
$output->setDecorated(true);
$output = new SymfonyStyle($input, $output);
$output->write('<question>do you want <comment>something</>');
$output->writeln('?</>');
};
Function Calls
None |
Stats
MD5 | 2109d206f6a967573b6a4109df7d01cb |
Eval Count | 0 |
Decode Time | 80 ms |