fork(11) download
  1. <?php
  2.  
  3. $input = 'localhost/used_cars/search/mk_honda/md_city/mk_toyota';
  4.  
  5. $r = preg_match_all('#/mk_([^/]*)#', $input, $matches);
  6.  
  7. print_r($matches[1]);
  8.  
  9. ?>
Success #stdin #stdout 0.01s 82944KB
stdin
Standard input is empty
stdout
Array
(
    [0] => honda
    [1] => toyota
)