_$_15d1[19]匹配,并输出其中的数字?

    this[_$_15d1[19]] = function() {
        this[_$_15d1[10]] = touchSupport ? _$_15d1[20] : _$_15d1[21];
        this[_$_15d1[11]] = touchSupport ? _$_15d1[20] : _$_15d1[22];
        this[_$_15d1[12]] = touchSupport ? _$_15d1[23] : _$_15d1[24];
        this[_$_15d1[13]] = touchSupport ? _$_15d1[25] : _$_15d1[26];
        this[_$_15d1[14]] = this[_$_15d1[28]]()[_$_15d1[27]](/[H|h]idden/, _$_15d1[6]) + _$_15d1[29];
        this[_$_15d1[30]]()
    };

代码如上图类似。想要匹配 _$_15d1[19]这种,并输出其中的数字。求帮助。

阅读 2k
1 个回答
<?php 
$text = 'this[_$_15d1[19]] = function() {
        this[_$_15d1[10]] = touchSupport ? _$_15d1[20] : _$_15d1[21];
        this[_$_15d1[11]] = touchSupport ? _$_15d1[20] : _$_15d1[22];
        this[_$_15d1[12]] = touchSupport ? _$_15d1[23] : _$_15d1[24];
        this[_$_15d1[13]] = touchSupport ? _$_15d1[25] : _$_15d1[26];
        this[_$_15d1[14]] = this[_$_15d1[28]]()[_$_15d1[27]](/[H|h]idden/, _$_15d1[6]) + _$_15d1[29];
        this[_$_15d1[30]]()
    };';
preg_match_all('/_\$_.*?\[([0-9]+)\]/i', $text, $arr);
echo implode($arr[0], ',');
echo '<br>';
echo implode($arr[1], ',');

输出

_$_15d1[19],_$_15d1[10],_$_15d1[20],_$_15d1[21],_$_15d1[11],_$_15d1[20],_$_15d1[22],_$_15d1[12],_$_15d1[23],_$_15d1[24],_$_15d1[13],_$_15d1[25],_$_15d1[26],_$_15d1[14],_$_15d1[28],_$_15d1[27],_$_15d1[6],_$_15d1[29],_$_15d1[30]
19,10,20,21,11,20,22,12,23,24,13,25,26,14,28,27,6,29,30

替换

$text = 'this[_$_15d1[19]] = function() {
        this[_$_15d1[10]] = touchSupport ? _$_15d1[20] : _$_15d1[21];
        this[_$_15d1[11]] = touchSupport ? _$_15d1[20] : _$_15d1[22];
        this[_$_15d1[12]] = touchSupport ? _$_15d1[23] : _$_15d1[24];
        this[_$_15d1[13]] = touchSupport ? _$_15d1[25] : _$_15d1[26];
        this[_$_15d1[14]] = this[_$_15d1[28]]()[_$_15d1[27]](/[H|h]idden/, _$_15d1[6]) + _$_15d1[29];
        this[_$_15d1[30]]()
    };';
$i = 0;
$data = array(4, 3, 2, 1);
$newText = preg_replace_callback(
    '/(_\$_.*?\[)([0-9]+)(\])/i',
    function($match) use ($data, &$i){
        $key = empty($data[$i]) ? $match[2] : $data[$i] ;
        $str = $match[1].$key.$match[3];
        $i++;
        return $str;
    },
    $text
); 
echo $newText;

输出

this[_$_15d1[4]] = function() {
        this[_$_15d1[3]] = touchSupport ? _$_15d1[2] : _$_15d1[1];
        this[_$_15d1[11]] = touchSupport ? _$_15d1[20] : _$_15d1[22];
        this[_$_15d1[12]] = touchSupport ? _$_15d1[23] : _$_15d1[24];
        this[_$_15d1[13]] = touchSupport ? _$_15d1[25] : _$_15d1[26];
        this[_$_15d1[14]] = this[_$_15d1[28]]()[_$_15d1[27]](/[H|h]idden/, _$_15d1[6]) + _$_15d1[29];
        this[_$_15d1[30]]()
    };
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题