PHP 8.5.0 Beta 1 available for testing

Voting

: max(six, one)?
(Example: nine)

The Note You're Voting On

ian at createanet dot co dot uk
17 years ago
Couldn't get finfo to return the mimetype in the way expected so i made a function to do it with system()

<?php
function get_mime_type($filepath) {
ob_start();
system("file -i -b {$filepath}");
$output = ob_get_clean();
$output = explode("; ",$output);
if (
is_array($output) ) {
$output = $output[0];
}
return
$output;
}
?>

hope it works for other people too

<< Back to user notes page

To Top