fork download
  1. <?php
  2.  
  3. $path = "shoe-for-ladies/high-hields/7-pont-with-silver-stripes-PD-0a8564q56";
  4. preg_match('~-(NS|PD|SP)-([A-Za-z0-9]+)~', $path, $match);
  5. print_r($match);
Success #stdin #stdout 0s 52488KB
stdin
Standard input is empty
stdout
Array
(
    [0] => -PD-0a8564q56
    [1] => PD
    [2] => 0a8564q56
)