am working with on some comments feed. there are two arrays arrayone is with comments and arraytwo is with self defined values if the value of arraytwo is present in arrayone then that value should be removed from arrayone
those are here
$arraytwo = array("cool","lo","love");
$arrayone = Array
(
[0] => Aman Namdev Twinkle::how many coast ,
[1] => Remi George::cool ,
[2] => Swaraj Kumar::wow mind blowing ,
[3] => Aman Nagar::nice ,
[4] => Aarya Kumar::H ,
[5] => Akash Shah::superb ,
[6] => Varadraj Nayak::in my city i will get it at 450 D i hav D D ,
[7] => Ronak Prajapati::prize koti che 400 rs ma male bro ,
[8] => Praveen Bahukhandi::dikhne me kam nahi kho jayein to gam nahi D ,
[9] => Keimah Prince Pachuau::it s my type i have three pieces ) ,
[10] => Chetan Singh::niceeeee ,
[11] => Abdus Salaam::Best 1 ,
[12] => Jagan Nath::Wow nice ,
[13] => Tanmay Sankhe::1no banntta ,
[14] => Prashant Bhesaniya::Good ,
[15] => Yogender Tanwar::nycc waferers ,
[16] => Ophil Goyal::fuck off 1 months bhi ni chalen gi ,
[17] => Tarun Khatri::how many coast ,
[18] => Jassu Jaz::sexy ,
[19] => Suraj Khanna::cool ,
[20] => Aap Kis "gaon" Se Hain::https www facebook com pages Aap Kis gaon Se Hain 522063624503084 ref hl like dis page ) ,
[21] => Amit Kumar::https www facebook com LearnAdvanceGeneralKnowledge ref stream&hc location stream ,
[22] => Sayan Ghosh::awesome ,
[23] => Salman Akhtar::n p ,
[24] => Ashish Kumar::pareshan mt ho le lungaaa ,
[25] => Vishesh Maheshwari::really like it where can be found it ,
[26] => Girjesh Pratap Singh-ll::https www facebook com pages We Can Change It If You Are LOve Our Country Then Join US 192400627596130 ,
[27] => Hiren Prajapati::bhai tara mate 6 ,
[28] => Vengatesh Kumar::really cool ,
[29] => Pabitra Kumar Samal::dont choice ,
[30] => Mithlesh Oraon::Bhai ye chasma mujhe doge ,
[31] => Priya Brata Tripathy::hiiiiiiiiiiiii lishaaaaaaaaaaa ,
[32] => Ravi Ram::How much costs ,
[33] => Manjunath Bullet::plz call me i wan t this glass my mun 9743001183 ,
[34] => Sizziling Angel::i have dis glairs ,
[35] => Nagarathinam Mohan::glasssss ,
[36] => A.k. Meher::i dont like after one month dmage this sunglas i am use this sunglas ,
[37] => Ram PArkash Goyal::I love u I love u I love u I wanna spend my life with only You ,
[38] => Deepak Kumar::its mine ,
[39] => Sanjay Pareek Monu::rkhe hui acche nhe lgthe lga le ,
[40] => Jyothi Budupula::like this ,
)
foreach($arraytwo as $sa)
{
foreach($arrayone as $fa)
{
$result1 = str_replace($sa,"",$fa);
}
}