Skip to content

Instantly share code, notes, and snippets.

@TimSC
Created May 5, 2018 03:54
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 TimSC/90ccb4997028ecdb60e902b8115a6523 to your computer and use it in GitHub Desktop.
Save TimSC/90ccb4997028ecdb60e902b8115a6523 to your computer and use it in GitHub Desktop.
File exist testing
<?php
$fiLi = glob("/home/tim/Desktop/test/*.pdf");
while(true)
{
$i = array_rand($fiLi);
if(!file_exists($fiLi[$i]))
throw RuntimeError("File said not to exist");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment