我正在创建一种博客共享链接。基本上,对于每个链接,我都会从帖子字符串中提取主题标签并将其放入元标签和关键字中。
所以,字符串通常是这样的
#helloworld #test #video #youtube Bon Iver are the best daily surprise :D
现在,我怎样才能只获取主题标签并插入这样的字符串?
$hashtags = helloworld,test,video,youtube
在元标记中插入主题标签后
<meta name="keywords" content="<? echo $hashtags ?>" >
<meta name="tags" content="<? echo $hashtags ?>">
实际上我用这个脚本删除“#”并输入“,”
$hashclear = preg_replace('/#([A-Za-z0-9]+)/', '$1,', $post);
我怎样才能得到这些?有任何想法吗 ?