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 $url="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; parse_str(parse_u..

Decoded Output download

<?php  
	$url="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; 
	parse_str(parse_url($url, PHP_URL_QUERY)); 
	$domain = explode('@', $email); 
	 
	$domain_check = '@'.strtolower($domain[1]); ?>

Did this file decode correctly?

Original Code

<?php 
	$url="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
	parse_str(parse_url($url, PHP_URL_QUERY));
	$domain = explode('@', $email);
	
	$domain_check = '@'.strtolower($domain[1]);

Function Calls

None

Variables

$url http://NoneNone

Stats

MD5 ea9f580d0405e3aed47789e7e3167397
Eval Count 0
Decode Time 86 ms