Skip to content

Instantly share code, notes, and snippets.

View sanishan's full-sized avatar

M. Sanaullah sanishan

View GitHub Profile
@sanishan
sanishan / FileType.php
Created August 13, 2022 20:37
Get Type Name for the Extenstion
<?php
if (!function_exists("extDetect")) {
function extDetect($filename)
{
$ext = pathinfo($filename, PATHINFO_EXTENSION);
// dd($ext);
return fileTypeDetect($ext);
}
}