Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kruxor/10215953 to your computer and use it in GitHub Desktop.
Save kruxor/10215953 to your computer and use it in GitHub Desktop.
Get an Image/file list into an javascript array - cross php with javascript
<script type="text/javascript">
var imageList=[<?php
$dir='uploads';
$files = scandir($dir);
foreach((array)$files as $file){
if($file=='.'||$file=='..') continue;
$fileList[]=$file;
}
echo "'".implode("','", $fileList)."'";
?>];
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment