Skip to content

Instantly share code, notes, and snippets.

@cmwelsh
Last active August 29, 2015 14:05
Show Gist options
  • Save cmwelsh/b7f922eb4c4fe3456bec to your computer and use it in GitHub Desktop.
Save cmwelsh/b7f922eb4c4fe3456bec to your computer and use it in GitHub Desktop.
<?php
$needles = array(
'/fizz/buzz'
);
$haystack = '/var/tmp/fizz/buzz';
$fileMatched = array_reduce(
$needles,
function($carry, $needle) use ($haystack) {
return (strpos($haystack, $needle) !== false) || $carry;
},
false
);
echo json_encode($fileMatched);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment