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 $real = 3.8; $string = "wow2"; $integer = 111; $value1 = (float)$string; $value..
Decoded Output download
<?php
$real = 3.8;
$string = "wow2";
$integer = 111;
$value1 = (float)$string;
$value2= (string)$integer;
$value3 = (int)$real;
echo $value1;
echo $value2;
echo $value3;
?>
Did this file decode correctly?
Original Code
<?php
$real = 3.8;
$string = "wow2";
$integer = 111;
$value1 = (float)$string;
$value2= (string)$integer;
$value3 = (int)$real;
echo $value1;
echo $value2;
echo $value3;
?>
Function Calls
| None |
Stats
| MD5 | 7b4f078861f361063649406c0e4170a1 |
| Eval Count | 0 |
| Decode Time | 95 ms |