本文整理匯總了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;
}
}