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 $a = "<tt>some</tt><b>html</b>"; preg_match("/<\w?>(\w*?)<\/\w?>/",$a,$b); prin..
Decoded Output download
<?php
$a = "<tt>some</tt><b>html</b>";
preg_match("/<\w?>(\w*?)<\/\w?>/",$a,$b);
print_r($b);
?>
Did this file decode correctly?
Original Code
<?php
$a = "<tt>some</tt><b>html</b>";
preg_match("/<\w?>(\w*?)<\/\w?>/",$a,$b);
print_r($b);
?>
Function Calls
print_r | 1 |
preg_match | 1 |
Stats
MD5 | fe21257ee88b11187658056a26576c59 |
Eval Count | 0 |
Decode Time | 153 ms |