I have an array
array(0=>12,1=>34,2=>334,3=>87,4=>75);
and what i want is values which is less than 85 in this array. Thanks in Advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use PHP’s builtin array function
array_filterto handle filtering values based on a custom filtering function.See a live example using your sample input here.