How do I get a file extension in PHP?

前端 未结 28 2261
一向
一向 2020-11-21 22:45

This is a question you can read everywhere on the web with various answers:

$ext = end(explode(\'.\', $filename));
$ext = substr(strrchr($filename, \'.\'), 1         


        
28条回答
  •  独厮守ぢ
    2020-11-21 23:15

    The simplest way to get file extension in PHP is to use PHP's built-in function pathinfo.

    $file_ext = pathinfo('your_file_name_here', PATHINFO_EXTENSION);
    echo ($file_ext); // The output should be the extension of the file e.g., png, gif, or html
    

提交回复
热议问题