$pattern="/^.*\/(.+?)$/";
$matchCount=preg_match($pattern,$filePath,$matches);
$fileName=$matches[1];
<u></u>preg_match
方法只进行一次匹配,返回匹配的数量(0或1)。
$pattern="/^.*\/(.+?)$/";
$matchCount=preg_match($pattern,$filePath,$matches);
$fileName=$matches[1];
<u></u>preg_match
方法只进行一次匹配,返回匹配的数量(0或1)。
本文标题:[PHP] php使用正则表达式
本文链接:https://www.haomeiwen.com/subject/ojpnkttx.html
网友评论