本文整理汇总了PHP中Family::getPropagatedElement方法的典型用法代码示例。如果您正苦于以下问题:PHP Family::getPropagatedElement方法的具体用法?PHP Family::getPropagatedElement怎么用?PHP Family::getPropagatedElement使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Family
的用法示例。
在下文中一共展示了Family::getPropagatedElement方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: updateImageContent
private function updateImageContent($tag, $oldTitle, $newTitle, &$pd, &$text)
{
if ($newTitle) {
if ($tag == 'person') {
$new = Person::getPropagatedElement($tag, $newTitle, $pd);
} else {
// family
$new = Family::getPropagatedElement($tag, $newTitle, $pd);
}
} else {
$new = '';
}
$old = "<{$tag}[^>]*? title=\"" . StructuredData::protectRegexSearch(StructuredData::escapeXml($oldTitle)) . "\".*?/>\n";
if (!preg_match('$' . $old . '$', $text)) {
$old = "</image_data>";
$new .= $old;
}
$result = preg_replace('$' . $old . '$', StructuredData::protectRegexReplace($new), $text);
// if nothing changed, return empty string
if ($result == $text) {
$result = '';
}
return $result;
}
示例2: updateFamilyLink
public static function updateFamilyLink($tag, $oldTitle, $newTitle, &$text, &$textChanged)
{
if ($newTitle) {
$new = Family::getPropagatedElement($tag, $newTitle, $pd);
} else {
$new = '';
}
$old = "<{$tag} title=\"" . StructuredData::protectRegexSearch(StructuredData::escapeXml($oldTitle)) . "\"/>\n";
if (!preg_match('$' . $old . '$', $text)) {
$old = ESINHandler::findRelationshipInsertionPointTag($tag, $text);
$new .= $old;
}
$result = preg_replace('$' . $old . '$', StructuredData::protectRegexReplace($new), $text, 1);
if ($result != $text) {
$text = $result;
$textChanged = true;
}
}