我的以下正则表达式条件适用于 $outputMsg="Center xxx 已更新" 但它在 $outputMsg="Center xxx yyy 已更新" 时不起作用
if(isset($messages->messages['status'])){
$outputMsg= strip_tags($messages->messages['status'][0]);
if(preg_match('/^Center [\w\d]+ has been updated.$/', $outputMsg))
{
$messages->messages['status'][0]="Centre details successfully updated";
}
}
有什么帮助吗?