/* search $array of strings for $search_for_this
* (case-in-sensitive and will also find "this" "in-a-longer-ThIs-string")
* remove element if found */
function ArraySearchDelete($array, $search_for_this)
{
$result = array();
foreach($array as $element)
{
if(!stristr($element, $search_for_this))
{
array_push($result,$element);
}
}
return $result;
}
- only together we can create a truly free world
- plz support dwaves to keep it up & running!
- (yes the info on the internet is (mostly) free but beer is still not free (still have to work on that))
- really really hate advertisement
- contribute: whenever a solution was found, blog about it for others to find!
- talk about, recommend & link to this blog and articles
- thanks to all who contribute!