我需要从joomla/K2
创建的元描述中删除一些花括号。
我发现了两个php
解决方案来删除不需要的大括号:
$description = preg_replace( '/{.+?}/', '', $description);
和
$metaDescItem = str_replace('/{.+?}/', '', $metaDescItem);
有不同的花括号控制着我的应用内容:
{123456789}, {123456789,123456789}, {URL}, {}
最好的解决方案是摆脱元描述输出中的任何大括号。
我是php新手,我不确定哪个功能正确。
接下来的问题是,我不知道在K2的php
文件中插入该函数的位置。
我认为我找到了生成元描述的正确的php
文件。
以下是/components/com_k2/views/item/view.html.php
的引用:
// Set metadata
if ($item->metadesc)
{
$document->setDescription((K2_JVERSION == '15') ? htmlspecialchars($item->metadesc, ENT_QUOTES, 'UTF-8') : $item->metadesc);
}
else
{
$metaDescItem = preg_replace("#{(.*?)}(.*?){/(.*?)}#s", '', $item->introtext.' '.$item->fulltext);
$metaDescItem = strip_tags($metaDescItem);
$metaDescItem = K2HelperUtilities::characterLimit($metaDescItem, $params->get('metaDescLimit', 150));
$document->setDescription(K2_JVERSION == '15' ? $metaDescItem : html_entity_decode($metaDescItem));
}
答案 0 :(得分:0)
使用$description = preg_replace( '@\{.+?\}@', '', $description);
- 您需要在\
和{
之前使用}
,因为这些是正则表达式中的特殊字符,因此您需要使用反斜杠转义它们。< / p>