Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

How to remove all occurrence of a word in array with PHP

1 Answer

0 votes
$s = "a php and java to a python and c# a aa";

$arr = explode(" ", $s);

print_r($arr);

$word = "a";
for ($i = 0; $i < count($arr); $i++) {
    if ($arr[$i] == $word)
        $arr[$i] = "";    
}
    
print_r($arr);



/*
run:

Array
(
    [0] => a
    [1] => php
    [2] => and
    [3] => java
    [4] => to
    [5] => a
    [6] => python
    [7] => and
    [8] => c#
    [9] => a
    [10] => aa
)
Array
(
    [0] => 
    [1] => php
    [2] => and
    [3] => java
    [4] => to
    [5] => 
    [6] => python
    [7] => and
    [8] => c#
    [9] => 
    [10] => aa
)

*/

 



answered Oct 13, 2020 by avibootz

Related questions

1 answer 95 views
1 answer 116 views
1 answer 115 views
1 answer 110 views
1 answer 121 views
1 answer 134 views
1 answer 114 views
...