Programming/PHP / / 2020. 2. 15. 22:58

파일 확장자 갖고 오기

728x90
$ext1 = pathinfo($_FILES['upload']['name'], PATHINFO_EXTENSION);
echo $ext1;
// result : jpg

$ext2 = pathinfo($_FILES['upload']['name']);
print_r($ext2);

/* result
Array
(
    [dirname] => .
    [basename] => test.jpg
    [extension] => jpg
    [filename] => test
)
*/

 

반응형