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 log() - wrong params test log() --INI-- precision=14 --FILE-- <?php try { ..

Decoded Output download

--TEST--
Test log() - wrong params test log()
--INI--
precision=14
--FILE--
<?php
try {
    log(36, -4);
} catch (ValueError $exception) {
    echo $exception->getMessage() . "
";
}
?>
--EXPECT--
log(): Argument #2 ($base) must be greater than 0

Did this file decode correctly?

Original Code

--TEST--
Test log() - wrong params test log()
--INI--
precision=14
--FILE--
<?php
try {
    log(36, -4);
} catch (ValueError $exception) {
    echo $exception->getMessage() . "\n";
}
?>
--EXPECT--
log(): Argument #2 ($base) must be greater than 0

Function Calls

None

Variables

None

Stats

MD5 ad0c76a2f40b49f28fc7a1577d9c941a
Eval Count 0
Decode Time 80 ms