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-- bcscale() function --EXTENSIONS-- bcmath --INI-- bcmath.scale=0 --FILE-- <?php ec..

Decoded Output download

--TEST--
bcscale() function
--EXTENSIONS--
bcmath
--INI--
bcmath.scale=0
--FILE--
<?php
echo bcadd("1", "2"),"
";
bcscale(2);
echo bcadd("1", "2"),"
";
bcscale(10);
echo bcadd("1", "2"),"
";
bcscale(0);
echo bcadd("1", "2"),"
";
?>
--EXPECT--
3
3.00
3.0000000000
3

Did this file decode correctly?

Original Code

--TEST--
bcscale() function
--EXTENSIONS--
bcmath
--INI--
bcmath.scale=0
--FILE--
<?php
echo bcadd("1", "2"),"\n";
bcscale(2);
echo bcadd("1", "2"),"\n";
bcscale(10);
echo bcadd("1", "2"),"\n";
bcscale(0);
echo bcadd("1", "2"),"\n";
?>
--EXPECT--
3
3.00
3.0000000000
3

Function Calls

bcadd 1

Variables

None

Stats

MD5 ffba251645aa4fa25142b8bca0199943
Eval Count 0
Decode Time 93 ms