在一个字符串中,每次有一个带有#的单词我想将这个单词保存在一个数组中,这里是我的代码:
<?php
function tag($matches)
{
$hash_tag = array();
$hash_tag[]=$matches[1];
return '<strong>' . $matches[1] . '</strong>';
}
$test = 'this is a #test1 #test2 #test3 #test4 #test5 #test6';
$regex = "#(\#.+)#";
$test = preg_replace_callback($regex, "tag", $test);
echo $test;
?>
但我不知道如何将每个新单词放入数组 $hash_tag 的新单元格中,我真的需要帮助