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 texts with emojis don't make longer lines than expected
return function (InputInterface $input, OutputInterface $output) {
$output = new SymfonyStyle($input, $output);
$output->success('Lorem ipsum dolor sit amet');
$output->success('Lorem ipsum dolor sit amet with one emoji ');
$output->success('Lorem ipsum dolor sit amet with so many of them ');
};
?>
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 texts with emojis don't make longer lines than expected
return function (InputInterface $input, OutputInterface $output) {
$output = new SymfonyStyle($input, $output);
$output->success('Lorem ipsum dolor sit amet');
$output->success('Lorem ipsum dolor sit amet with one emoji ');
$output->success('Lorem ipsum dolor sit amet with so many of them ');
};
Function Calls
None |
Stats
MD5 | 875e31d5acc981c75545cd62b23b4532 |
Eval Count | 0 |
Decode Time | 82 ms |