$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)。