gpt4 book ai didi

php - 从数组中删除与特定单词匹配的所有字符串(php)

转载 作者:行者123 更新时间:2023-12-02 15:36:47 24 4
gpt4 key购买 nike

我有一个字符串数组,我想从数组中删除所有包含单词“Free_Course”的元素

该数组包含诸如“Free_Course_123”、“Free_Course_124”、“Other_Course_123”、Other_Course_1234 等字符串。

我只想遍历数组,并删除所有包含“Free_Course”的内容,这样就可以删除上面列出的前 2 个元素。

我试过使用这个 preg_grep 函数,但到目前为止还没有成功:

$cleanTags= preg_grep("/^Free_Course*/", $tags);

最佳答案

您可以使用 native PHP 函数 strpos ( http://php.net/manual/fr/function.strpos.php ) 来识别数组中应删除的值:

<?php

foreach ($tags as $index => $tag) {
if (strpos($tag, 'Free_Course') !== false) {
unset($tags[$index]);
}
}

关于php - 从数组中删除与特定单词匹配的所有字符串(php),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16153948/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com