hello
i change php code using bin2hex and i want when hex2bin code run php
for example
$r456t = ‘$str1 = "[email protected]";’;
echo bin2hex($r456t) . "
";
get output result
2473747231203d202272617979333435363738393233343535353636406578616d706c652e636f6d223b
next page create “bin.php” i used this code
hex2bin(“3c3f706870202473747231203d202272617979333435363738393233343535353636406578616d706c652e636f6d223b203f3e”);
echo $str1;
how get result
[email protected]
thanks