php foreach array pop

Solutions on MaxInterview for php foreach array pop by the best coders in the world

showing results for - "php foreach array pop"
Federica
29 Jan 2020
1foreach ($display_related_tags as $key => $tag_name) {
2    if($tag_name == $found_tag['name']) {
3        unset($display_related_tags[$key]);
4    }
5}
6