php get the type code example
Example 1: check type in php
gettype ( mixed $var ) : string
Example 2: php get filetype
<?php
echo filetype('/etc/passwd'); // file
echo filetype('/etc/'); // dir
?>
gettype ( mixed $var ) : string
<?php
echo filetype('/etc/passwd'); // file
echo filetype('/etc/'); // dir
?>