Updating submodules
[hiphop-php.git] / hphp / test / slow / opendir_glob.php
blob19bb50bcc2449b124c2bd025e44f45839ac272c0
1 <?hh
4 <<__EntryPoint>>
5 function main_opendir_glob() {
6 $dir = opendir('glob://' . __DIR__ . '/../sample_dir/*');
8 while ( ($file = readdir($dir)) !== false ) {
9 echo "$file\n";