Source Code:
(back to article)
<?php $fruits = array("apple", "banana", "orange", "apple", "grape"); $filtered_fruits = array_filter($fruits, function($fruit) { return strpos($fruit, 'apple') === 0; }); print_r($filtered_fruits);
Result:
Report an issue