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 $string = "test string"; $test11 = array($string, &$string); var_dump($test11); ..

Decoded Output download

<?php
$string = "test string";
$test11 = array($string, &$string);

var_dump($test11);
 ?>

Did this file decode correctly?

Original Code

<?php
$string = "test string";
$test11 = array($string, &$string);

var_dump($test11);

Function Calls

var_dump 1

Variables

$string test string
$test11 [{'key': 0, 'value': 'test string'}, {'key': 1, 'value': 'test string'}]

Stats

MD5 ae97dd4ea9dc872274fe1b636734eb0d
Eval Count 0
Decode Time 80 ms