Source Code:
(back to article)
<?php $colors = ["red", "blue", "green", "yellow"]; $pattern = "/^g/"; $result = preg_grep($pattern, $colors); print_r($result);
Result:
Report an issue