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 $count = 0; function calculate_count() { // will print 0 and increment global var..

Decoded Output download

<?php 
$count = 0; 
function calculate_count() { 
// will print 0 and increment global variable declared outside function 
echo $GLOBALS["count"]++ . "<br/>";  
} 
calculate_count(); 
echo $count; 
?> 

Did this file decode correctly?

Original Code

<?php
$count = 0;
function calculate_count() {
// will print 0 and increment global variable declared outside function
echo $GLOBALS["count"]++ . "<br/>"; 
}
calculate_count();
echo $count;
?>

Function Calls

calculate_count 1

Variables

$count 0

Stats

MD5 00be0f0532febd4a58eb6c1b2908207b
Eval Count 0
Decode Time 122 ms