fork(1) download
  1. <?php
  2. $pattern = "/'\\\\x61\\\\x62\\\\x63(.+)'/i";
  3.  
  4. preg_match_all($pattern, "'\\x61\\x62\\x63\\x64\\x61\\x42\\x93\\x3a'", $matches);
  5. print_r($matches);
  6. ?>
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
Array
(
    [0] => Array
        (
            [0] => '\x61\x62\x63\x64\x61\x42\x93\x3a'
        )

    [1] => Array
        (
            [0] => \x64\x61\x42\x93\x3a
        )

)