fork download
  1. <?php
  2. $haystack = "abc[d]-ef";
  3. preg_match_all('/[][-]/', $haystack, $matches);
  4. print_r($matches);
  5.  
Success #stdin #stdout 0s 52488KB
stdin
Standard input is empty
stdout
Array
(
    [0] => Array
        (
            [0] => [
            [1] => ]
            [2] => -
        )

)