Skip to content

Instantly share code, notes, and snippets.

@janus57
Created May 29, 2017 10:33
Show Gist options
  • Save janus57/1b3ca82d18b8fa1457359addc15ebcdd to your computer and use it in GitHub Desktop.
Save janus57/1b3ca82d18b8fa1457359addc15ebcdd to your computer and use it in GitHub Desktop.
count jpg/jpeg file un directory and subdirectory with php/system/find
<?php
$comptage = system("find . -type f -exec file {} \; | grep -i 'jpeg\|jpg' | wc -l");
file_put_contents('comptage.txt', $comptage);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment