PHP - 转换八进制/十六进制转义序列

时间:2016-04-22 09:33:57

标签: php string ascii octal

我不确定这个php功能的确切命名,所以如果你有关于这个问题的更好标题的建议,欢迎。

关键是,我有一些以这种方式编写的字符串"ge\164\x42as\145\x44\151\x72",我想用可读字符转换它们(例如上面的字符串值是"getBaseDir"

如何使用php以编程方式完成此操作?

更新
这些字符串包含在我要解析和清理的php源文件中,以便更具可读性。

所以我很感激一个解决方案,它为我提供了一种解析和隐藏此字符串的方法(例如使用正则表达式)...

这里是代码的一部分,因此更容易理解场景

 public function cmp($x74, $x7a)
    {
        $x76 = $this->x1c->x3380->{$this->xc1->x3380->xe269};
        $x12213 = "\x68\145\x6c\x70\x65\x72";
        $x11f45 = "\x67\x65\164\123t\x6fr\x65Co\156\146\x69\147";

        if ($x76(${$this->x83->x3380->{$this->x83->x3380->{$this->x83->x3380->xd341}}}) == $x76(${$this->x83->x336e->{$this->xc1->x336e->{$this->xc1->x336e->x8445}}})) {
            return 0;
        }
        return ($x76(${$this->x83->x334c->{$this->x83->x334c->x3423}}) < $x76(${$this->x83->x336e->{$this->xc1->x336e->{$this->xc1->x336e->x8445}}})) ? 1 : -1;
    }

要清除上述代码是我们合法购买的扩展程序的一部分,但我们需要自定义。

3 个答案:

答案 0 :(得分:0)

  

如何使用php以编程方式完成此操作?

你可以简单地回应它:

echo "ge\164\x42as\145\x44\151\x72";
//getBaseDir

答案 1 :(得分:0)

$string = '"\125n\141\x62\154\145\40to\x67\145\156e\x72\141t\145\x20\x74\x68e\40d\x61t\141\40\146\145\145d\x2e"';

\\ convert the octal into string
$string = preg_replace_callback('/\\\\([0-7]{1,3})/', function ($m) {
    return chr(octdec($m[1]));
}, $string);

\\ convert the hexadecimal part of the string
$string = preg_replace_callback('/\\\\x([0-9A-F]{1,2})/i', function ($m) {
    return chr(hexdec($m[1]));
}, $string);

在这种特殊情况下我需要解析一个完整的文件内容匹配""分隔的所有字符串并转换它们,这里是完整的解决方案

$content = file_get_contents($filepath);

// match all string delimited by ""
$content = preg_replace_callback("/(\".*?\")/s ", function ($m) {
    $string = $m[1];

    \\ convert the octal into string
    $string = preg_replace_callback('/\\\\([0-7]{1,3})/', function ($m) {
        return chr(octdec($m[1]));
    }, $string);

    \\ convert the hexadecimal part of the string
    $string = preg_replace_callback('/\\\\x([0-9A-F]{1,2})/i', function ($m) {
        return chr(hexdec($m[1]));
    }, $string);

    return $string;

}, $content);

答案 2 :(得分:0)

试试这个

$ret = print_r("\\012", true);