![]() |
read mime type of the file - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: read mime type of the file (/showthread.php?tid=17958) |
read mime type of the file - El Forum - 04-21-2009 [eluser]Skuja[/eluser] hi, i want to read mime type of an audio file. I tried following functions: mime_content_type and finfo_file, but it turns out that neither magic_mime or fileinfo modules are installed on my hosting server. Is there any other safe way to check file type or should I contact my host to enable one of these modules? read mime type of the file - El Forum - 04-22-2009 [eluser]TheFuzzy0ne[/eluser] That information should be obtainable via the $_FILES array - $_FILES['field_name']['type'] read mime type of the file - El Forum - 04-22-2009 [eluser]Skuja[/eluser] I was not trying to upload these files.. they already were stored there, but thanks for your help TheFuzzy0ne. I already contacted hosting company and they installed fileinfo module for me. read mime type of the file - El Forum - 04-22-2009 [eluser]TheFuzzy0ne[/eluser] Great stuff. My Web host aren't that nice... Sorry for missing the fact that you weren't uploading the file. |