fork(11) download
  1. <?php
  2. $string = '[...]http://localhost/project/gallery/http://localhost/project/case/category#/img#/case#/http://localhost/project/case/main-category/45/main/http://localhost/project/sitemap[...]';
  3. if (preg_match('~/case/([^/]+)/(\d{2,3})/([^/]+)/~i', $string, $m))
  4. print_r($m);
  5. ?>
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Array
(
    [0] => /case/main-category/45/main/
    [1] => main-category
    [2] => 45
    [3] => main
)