Delete an element from an array in php without array_search
I want to delete an array element from array, but I dont know the array key of that element only value is known
It is possible by array_search with value, first to find the key and then use unset
Is there any inbuilt array function to remove array element with array value ?
array_search()?array_searchis the most straight-forward.