How does php get the suffix of the uploaded file?

 $temp_arr = explode(".", $file_name);
 $file_ext = array_pop($temp_arr);
 $file_ext = trim($file_ext);
 $file_ext = strtolower($file_ext);

Transfer from: https://blog.csdn.net/xuyaokun123/article/details/51816309

Guess you like

Origin blog.csdn.net/z3287852/article/details/111564240