fork download
  1. <?php
  2.  
  3. $str = '/something-new/:id/goto/:new_id/full/page/:num/';
  4. preg_match_all('~:(.*?)/~', $str, $matches);
  5. print_r($matches[1]);
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
Array
(
    [0] => id
    [1] => new_id
    [2] => num
)