本文整理汇总了PHP中DatabaseUpdater::verifyAndUpdatePlugins方法的典型用法代码示例。如果您正苦于以下问题:PHP DatabaseUpdater::verifyAndUpdatePlugins方法的具体用法?PHP DatabaseUpdater::verifyAndUpdatePlugins怎么用?PHP DatabaseUpdater::verifyAndUpdatePlugins使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DatabaseUpdater
的用法示例。
在下文中一共展示了DatabaseUpdater::verifyAndUpdatePlugins方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: foreach
if ($author_string == '') {
return $detectedAuthors;
}
// detecting known duplicates
foreach ($this->fpa_duplicates as $known_duplicate) {
foreach ($known_duplicate['names'] as $known_name) {
if (preg_match('/' . preg_quote($known_name, '/') . '/', $author_string)) {
$author_string = preg_replace('/' . preg_quote($known_name, '/') . '/', $known_duplicate['ends'], $author_string);
}
}
}
// detecting inline multiple authors
foreach ($this->fpa_separators as $separator) {
$found_authors = explode($separator, $author_string);
if (sizeof($found_authors) > 1) {
foreach ($found_authors as $author) {
$detectedAuthors[] = trim($author);
}
break;
}
}
if (sizeof($detectedAuthors) == 0) {
return [trim($author_string)];
} else {
return $detectedAuthors;
}
}
}
$db_updater = new DatabaseUpdater();
$db_updater->verifyAndUpdatePlugins();