<?PHP $paths = [ '/cars$', '.*/cars$', '^cars/.*/', '/trucks$', '.*/trucks$' ]; $url = 'some-site.com/cars'; foreach($paths AS $v) { if (preg_match('~'.$v.'~', $url)) { echo $v.' matched'; break; } } ?>
You have javascript disabled. You will not be able to edit any code.