PHP array_filter() Function
Complete PHP Array Reference
Definition and Usage
The array_filter() function passes each value in the array to a user-made function,
which returns either true or false, and returns an array only with the values
that returned true.
Syntax
|
array_filter(array,function)
|
| Parameter |
Description |
| array |
Required. Specifies an array |
| function |
Required. Name of the user-made function |
Example
<?php
function myfunction($v)
{
if ($v==="Horse")
{
return true;
}
return false;
}
$a=array(0=>"Dog",1=>"Cat",2=>"Horse");
print_r(array_filter($a,"myfunction"));
?>
|
The output of the code above will be:
Complete PHP Array Reference
 |
W3Schools' Online Certification Program
The perfect solution for professionals who need to balance work, family, and career building.
More than 4000 certificates already issued!
|
The HTML Certificate documents your knowledge of HTML, XHTML, and CSS.
The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.
The XML Certificate documents your knowledge of XML, XML DOM and XSLT.
The ASP Certificate documents your knowledge of ASP, SQL, and ADO.
The PHP Certificate documents your knowledge of PHP and SQL (MySQL).
|