Guest User

Untitled

a guest
Feb 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $array = array();
  2. $array[] = 'files/cache';
  3. $array[] = 'videos/src';
  4.  
  5. $files = array(); //has a lot more values
  6. $files[] = 'config/site_theme_paths.php';
  7. $files[] = 'files/cache/somefile.jpg';
  8.  
  9. foreach ($files as $files) {
  10. if(!in_array($file,$array)) { //only works for exact matches not if it contains
  11. echo $file.' is not in the array';
  12. }
  13. }
Add Comment
Please, Sign In to add comment