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 global $php; $config = $php->config['event']; if (empty($config[$php->factory_key]))..

Decoded Output download

<?php
global $php;
$config = $php->config['event'];
if (empty($config[$php->factory_key]))
{
    throw new Swoole\Exception\Factory("event->{$php->factory_key} is not fund.");
}
$config = $config[$php->factory_key];
if (empty($config) or !isset($config['async']))
{
    throw new Exception("require event[$php->factory_key] config.");
}
if ($config['async'] && empty($config['type']))
{
    throw new Exception("\"type\" config required in event aysnc mode");
}
return new Swoole\Component\Event($config);
 ?>

Did this file decode correctly?

Original Code

<?php
global $php;
$config = $php->config['event'];
if (empty($config[$php->factory_key]))
{
    throw new Swoole\Exception\Factory("event->{$php->factory_key} is not fund.");
}
$config = $config[$php->factory_key];
if (empty($config) or !isset($config['async']))
{
    throw new Exception("require event[$php->factory_key] config.");
}
if ($config['async'] && empty($config['type']))
{
    throw new Exception("\"type\" config required in event aysnc mode");
}
return new Swoole\Component\Event($config);

Function Calls

None

Variables

None

Stats

MD5 a3cec0ae1267583cba201d6f9c35f794
Eval Count 0
Decode Time 91 ms