Skip to content

Instantly share code, notes, and snippets.

@ondrejmirtes
Created July 17, 2012 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ondrejmirtes/3129530 to your computer and use it in GitHub Desktop.
Save ondrejmirtes/3129530 to your computer and use it in GitHub Desktop.
Array contains item starting with X
<?php
$array = array_filter(array('yx', 'y', 'z'));
$exists = count(array_filter($array, function($item) {
return substr($item, 0, 1) === 'x';
})) > 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment