简体   繁体   中英

What is the best approach to extract a tag

I have this elements where I need to extract this {{search_tag}} and replace by a value

https://www.toto.com/search/10/{{search_tag}}.html#_his_

I tried this but I don't if it's the good way, does'nt work.

$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";
}

You can use str_replace

$str = 'https://www.toto.com/search/10/{{search_tag}}.html#_his_';
$val = 'NEW_VALUE';
$new_str = str_replace("{{search_tag}}", $val, $str);
//outputs: https://www.toto.com/search/10/NEW_VALUE.html#_his_

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM