Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- Test dump() with one arg doesn't show line number --FILE-- <?php putenv('NO_COLOR..
Decoded Output download
--TEST--
Test dump() with one arg doesn't show line number
--FILE--
<?php
putenv('NO_COLOR=1');
$vendor = __DIR__;
while (!file_exists($vendor.'/vendor')) {
$vendor = \dirname($vendor);
}
require $vendor.'/vendor/autoload.php';
dump('foo');
--EXPECT--
"foo"
?>
Did this file decode correctly?
Original Code
--TEST--
Test dump() with one arg doesn't show line number
--FILE--
<?php
putenv('NO_COLOR=1');
$vendor = __DIR__;
while (!file_exists($vendor.'/vendor')) {
$vendor = \dirname($vendor);
}
require $vendor.'/vendor/autoload.php';
dump('foo');
--EXPECT--
"foo"
Function Calls
None |
Stats
MD5 | 172d277387bba8cccddf4a4c43003d0f |
Eval Count | 0 |
Decode Time | 98 ms |