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 // Two variables $var1 = "Hello"; $var2 = "World"; // Joining variables into o..

Decoded Output download

<?php
// Two variables
$var1 = "Hello";
$var2 = "World";

// Joining variables into one string
$result = $var1 . " " . $var2;

// Output the result
echo $result;
?>

Did this file decode correctly?

Original Code

<?php
// Two variables
$var1 = "Hello";
$var2 = "World";

// Joining variables into one string
$result = $var1 . " " . $var2;

// Output the result
echo $result;
?>

Function Calls

None

Variables

$var1 Hello
$var2 World
$result Hello World

Stats

MD5 3022b259902f76e8bd2f2003ca70d39e
Eval Count 0
Decode Time 42 ms