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 $x = 75; $y = 25; function addition() { $GLOBALS['z'] = $GLOBALS['x'] ..

Decoded Output download

<?php 
$x = 75; 
$y = 25;
 
function addition() { 
    $GLOBALS['z'] = $GLOBALS['x'] + $GLOBALS['y']; 
}
 
addition(); 
echo $z; 
?>

Did this file decode correctly?

Original Code

<?php 
$x = 75; 
$y = 25;
 
function addition() { 
    $GLOBALS['z'] = $GLOBALS['x'] + $GLOBALS['y']; 
}
 
addition(); 
echo $z; 
?>

Function Calls

addition 1

Variables

$x 75
$y 25
$z 100

Stats

MD5 fa4908ec058c827855b3e9ff02955f93
Eval Count 0
Decode Time 90 ms