Answers for "get file info php"

PHP
0

php info file

<?php
// Show all information, defaults to INFO_ALL
phpinfo();
?>
Posted by: Guest on December-10-2020
0

check what kind of file was uploaded php

$allowed = array('gif', 'png', 'jpg');
$filename = $_FILES['video_file']['name'];
$ext = pathinfo($filename, PATHINFO_EXTENSION);
if (!in_array($ext, $allowed)) {
    echo 'error';
}
Posted by: Guest on September-06-2021

Browse Popular Code Answers by Language