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 SwooleCli\Preprocessor; use SwooleCli\Extension; return function (Preprocesso..
Decoded Output download
<?php
use SwooleCli\Preprocessor;
use SwooleCli\Extension;
return function (Preprocessor $p) {
$depends = ['libuuid', 'libintl'];
$options = '--with-uuid=' . LIBUUID_PREFIX;
$ext = (new Extension('uuid'))
->withLicense('https://github.com/php/pecl-networking-uuid#LGPL-2.1-1-ov-file', Extension::LICENSE_LGPL)
->withHomePage('https://pecl.php.net/package/uuid')
->withManual('https://github.com/php/pecl-networking-uuid.git')
->withOptions($options)
->withPeclVersion('1.2.0')
->withDependentLibraries(...$depends);
$p->addExtension($ext);
};
?>
Did this file decode correctly?
Original Code
<?php
use SwooleCli\Preprocessor;
use SwooleCli\Extension;
return function (Preprocessor $p) {
$depends = ['libuuid', 'libintl'];
$options = '--with-uuid=' . LIBUUID_PREFIX;
$ext = (new Extension('uuid'))
->withLicense('https://github.com/php/pecl-networking-uuid#LGPL-2.1-1-ov-file', Extension::LICENSE_LGPL)
->withHomePage('https://pecl.php.net/package/uuid')
->withManual('https://github.com/php/pecl-networking-uuid.git')
->withOptions($options)
->withPeclVersion('1.2.0')
->withDependentLibraries(...$depends);
$p->addExtension($ext);
};
Function Calls
None |
Stats
MD5 | f65ad9c9f2a1d57a8274577a15f55732 |
Eval Count | 0 |
Decode Time | 74 ms |