php get files of type code example
Example: php get filetype
<?php
echo filetype('/etc/passwd'); // file
echo filetype('/etc/'); // dir
?>
<?php
echo filetype('/etc/passwd'); // file
echo filetype('/etc/'); // dir
?>