fork download
  1. <?php
  2.  
  3. $test = "here's ===something special===, like ===this one===";
  4.  
  5. preg_match_all('/===(.+?)===/', $test, $matches);
  6. var_dump($matches[1]);
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
array(2) {
  [0]=>
  string(17) "something special"
  [1]=>
  string(8) "this one"
}