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

Signing you up...

Thank you for signing up!

PHP Decode

$re = '/(#|)([0-9\p{L}]+)/'; $str = '# dfgdf sdf #edee #6565'; preg_match_all($re, $..

Decoded Output download

<?   
$re = '/(#|)([0-9\p{L}]+)/'; 
$str = '# dfgdf sdf #edee #6565'; 
 
preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0); 
 
// Print the entire match result 
print_r($matches); ?>

Did this file decode correctly?

Original Code


$re = '/(#|)([0-9\p{L}]+)/';
$str = '# dfgdf sdf #edee #6565';

preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0);

// Print the entire match result
print_r($matches);

Function Calls

None

Variables

$re /(#|)([0-9\p{L}]+)/
$str # dfgdf sdf #edee #6565

Stats

MD5 c95eb2c705857c6afe7e865a62e8ee53
Eval Count 0
Decode Time 102 ms