PHP 8.5.0 Alpha 1 available for testing

Voting

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

The Note You're Voting On

darko at uvcms dot com
16 years ago
OO (bit improved) version of the same thing

<?php
$file
= '<somefile>';
$ftype = 'application/octet-stream';
$finfo = @new finfo(FILEINFO_MIME);
$fres = @$finfo->file($file);
if (
is_string($fres) && !empty($fres)) {
$ftype = $fres;
}
?>

<< Back to user notes page

To Top