Show Output
Delete PHP Array Element by Value Not Key
"; // Sample eassociative array $array2 = array("a" => "Apple", "b" => "Ball", "c" => "Cat"); // Search value and delete if(($key = array_search("Cat", $array2)) !== false) { unset($array2[$key]); } print_r($array2); ?>