fork download
  1. <?php
  2. $s = "asdfasdf /1234/ /5527191/ /15974/";
  3. preg_match_all("#/\d{1,10}/#", $s, $matches);
  4. var_dump($matches);
  5. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
array(1) {
  [0]=>
  array(3) {
    [0]=>
    string(6) "/1234/"
    [1]=>
    string(9) "/5527191/"
    [2]=>
    string(7) "/15974/"
  }
}