本文介绍了从 Wordpress 标题返回文本的简单正则表达式 - qtranslate 插件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用 qtranslate wordpress 插件以多种语言存储博客内容.现在我需要从 qtranslate 标签中提取内容.
I am using qtranslate wordpress plugin to store blog content in multiple languages. Now I need to extract content from qtranslate tags.
$post_title = "<!--:en-->English text<!--:--><!--:it-->Italian text<!--:-->";
什么是 php 代码 &正则表达式从这个字符串返回文本和语言?
What would be the php code & regular expression to return text and language from this string?
非常感谢!
推荐答案
尝试类似:
<?php
$post_title = "<!--:en-->English text<!--:--><!--:it-->Italian text<!--:-->";
$regexp = '/<\!--:(\w+?)-->([^<]+?)<\!--:-->/i';
if(preg_match_all($regexp, $post_title, $matches))
{
$titles = array();
$count = count($matches[0]);
for($i = 0; $i < $count; $i++)
{
$titles[$matches[1][$i]] = $matches[2][$i];
}
print_r($titles);
}
else
{
echo "No matches";
}
?>
打印:
Array
(
[en] => English text
[it] => Italian text
)
这篇关于从 Wordpress 标题返回文本的简单正则表达式 - qtranslate 插件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!