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 class DegreeToRadian extends Handler { use MultipleAddressMode, UnaryOperator, Fl..

Decoded Output download

<?php

class DegreeToRadian extends Handler {

	use MultipleAddressMode, UnaryOperator, FloatingPointOnly, Multithreaded;
	
	protected function getActionOnUnitData() {
		$type = $this->getOperandType(2);
		$cType = $this->getOperandCType(2);
		$f = ($type == 'F32') ? 'f' : '';
		return "res = op1 * (($cType) (M_PI / 180.0));";
	}
}

?>

Did this file decode correctly?

Original Code

<?php

class DegreeToRadian extends Handler {

	use MultipleAddressMode, UnaryOperator, FloatingPointOnly, Multithreaded;
	
	protected function getActionOnUnitData() {
		$type = $this->getOperandType(2);
		$cType = $this->getOperandCType(2);
		$f = ($type == 'F32') ? 'f' : '';
		return "res = op1 * (($cType) (M_PI / 180.0));";
	}
}

?>

Function Calls

None

Variables

None

Stats

MD5 c8eeb3bf7ac044ff2ede4c485fd30451
Eval Count 0
Decode Time 112 ms