Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
需要theme10从catalog/view/theme/theme10/
theme10
catalog/view/theme/theme10/
我试过这个:
preg_match('|catalog/view/theme/(.*)/|',$html, $theme);
$matches = [] ; $pattern = "@catalog/view/theme/([a-zA-Z0-9]+)/{0,1}@" ; $string = "catalog/view/theme/theme10" ; preg_match($pattern, $string, $matches) ; echo $matches[1] ;
最终有无/工作。
/