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 namespace Symfony\Component\DependencyInjection\Loader\Configurator; return static..

Decoded Output download

<?php

namespace Symfony\Component\DependencyInjection\Loader\Configurator;

return static function (ContainerConfigurator $container) {
    $container->extension('framework', [
        'annotations' => false,
        'http_method_override' => false,
    'handle_all_throwables' => true,
    'php_errors' => ['log' => true],
        'mailer' => [
            'transports' => [
                'transport1' => 'smtp://example1.com',
                'transport2' => 'smtp://example2.com',
            ],
            'envelope' => [
                'sender' => '[email protected]',
                'recipients' => ['[email protected]', '[email protected]'],
                'allowed_recipients' => ['foobar@example\.org', '.*@example\.com'],
            ],
            'headers' => [
                'from' => '[email protected]',
                'bcc' => ['[email protected]', '[email protected]'],
                'foo' => 'bar',
            ],
        ],
    ]);
};
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Symfony\Component\DependencyInjection\Loader\Configurator;

return static function (ContainerConfigurator $container) {
    $container->extension('framework', [
        'annotations' => false,
        'http_method_override' => false,
    'handle_all_throwables' => true,
    'php_errors' => ['log' => true],
        'mailer' => [
            'transports' => [
                'transport1' => 'smtp://example1.com',
                'transport2' => 'smtp://example2.com',
            ],
            'envelope' => [
                'sender' => '[email protected]',
                'recipients' => ['[email protected]', '[email protected]'],
                'allowed_recipients' => ['foobar@example\.org', '.*@example\.com'],
            ],
            'headers' => [
                'from' => '[email protected]',
                'bcc' => ['[email protected]', '[email protected]'],
                'foo' => 'bar',
            ],
        ],
    ]);
};

Function Calls

None

Variables

None

Stats

MD5 807d6989c3322b8685b10a152a2b3e36
Eval Count 0
Decode Time 83 ms