我有这些元素,我需要提取此{{search_tag}}并替换为值
https://www.toto.com/search/10/{{search_tag}}.html#_his_
我尝试了这个,但我不知道如果它是好方法,那就不起作用。
$words = explode('{{search_tag}} ',$website_url[$n]);
$exists_at = array_search($seach,$words);
if ($exists_at){
echo "Found at ".$exists_at." key in the \$word array";
}