function decode_phpstring ($str
{
$str = preg_replace_callback'~\\([0-7]{1,3})~', function ($match) {
return chroctdec$match[1]));
}, $str);
$str = preg_replace_callback'~\\(x[0-9A-Fa-f]{1,2})~', function ($match) {
return chrhexdec$match[1]));
}, $str);
return $str
}