我已经使用hashtags
我添加了preg_replace
函数将hashtags
标签替换为$post = @preg_replace('/(^|\s)#(\w+)/', '<a class=\"hashtag\" href="hashtag.php?tag=\2">\1#\2</a>', $post);
当我使用英文字符集时,但是使用阿拉伯语或任何其他语言无法正常工作
我的代码中的问题在哪里?
preg_repalce
我希望{{1}}如何更换无英文标签?
答案 0 :(得分:2)
我找到了
这是如何匹配阿拉伯语主题标签
$post = @preg_replace('/(#\w+)/u', '<a class="hashtag" href="hashtag.php?tag=\1">\1</a>', $post);