Answers for "how to get file path from input type=file in php"

PHP
0

php get file type from url

$file_info = new finfo(FILEINFO_MIME_TYPE);
$mime_type = $file_info->buffer(file_get_contents($image_url));
echo $mime_type;
Posted by: Guest on March-16-2021
0

get file name from file path in php

<?php
$path_parts = pathinfo('/www/htdocs/inc/lib.inc.php');

echo $path_parts['dirname'], "\n";
echo $path_parts['basename'], "\n";
echo $path_parts['extension'], "\n";
echo $path_parts['filename'], "\n"; // since PHP 5.2.0
?>
Posted by: Guest on July-19-2021

Code answers related to "how to get file path from input type=file in php"

Browse Popular Code Answers by Language