Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

--TEST-- Imagick::readImage test --SKIPIF-- <?php require_once(dirname(__FILE__) . '/skipi..

Decoded Output download

--TEST--
Imagick::readImage test
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php

$reflClass = new ReflectionClass('Imagick');
$constants = $reflClass->getConstants();

$output = '';

foreach ($constants as $key => $value) {
	$output .= "$key: $value 
";
}
echo "Ok";

?>
--EXPECTF--
Ok

Did this file decode correctly?

Original Code

--TEST--
Imagick::readImage test
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php

$reflClass = new ReflectionClass('Imagick');
$constants = $reflClass->getConstants();

$output = '';

foreach ($constants as $key => $value) {
	$output .= "$key: $value \n";
}
echo "Ok";

?>
--EXPECTF--
Ok

Function Calls

dirname 1

Variables

None

Stats

MD5 90af42a2b834e318d762b286cfc6ff65
Eval Count 0
Decode Time 277 ms