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 require_once "tests/helper/superclass.php"; class FooSub extends Foo { /** * @pa..

Decoded Output download

<?php

require_once "tests/helper/superclass.php";
class FooSub extends Foo {
	/**
	 * @param int
	 * @return int
	 */
	public function childMethod($a) {
		if (is_int($a)) {
			return $a + 42;
		}
		return 42;
	}
}
 ?>

Did this file decode correctly?

Original Code

<?php

require_once "tests/helper/superclass.php";
class FooSub extends Foo {
	/**
	 * @param int
	 * @return int
	 */
	public function childMethod($a) {
		if (is_int($a)) {
			return $a + 42;
		}
		return 42;
	}
}

Function Calls

None

Variables

None

Stats

MD5 202dd05d8542201b9b58e1dd8ac8e55f
Eval Count 0
Decode Time 166 ms