.mp3 Filetype Upload

后端 未结 6 1453
清歌不尽
清歌不尽 2021-01-07 06:31

I\'m working on a PHP upload script which allows .mp3 file uploads amongst others. I\'ve created an array which specifies permitted filetypes, including mp3s, and set a maxi

6条回答
  •  遥遥无期
    2021-01-07 07:23

    MAX_FILE_SIZE is a value in Bytes

    5120000 is not 500 MB. It's 5MB by my reckoning.

    You'll also need to check that you're not exceeding the "post_max_size" and "upload_max_size" variables in your php.ini file

    Secondly, an mp3 can be any of the following mimetypes

    • audio/mpeg
    • audio/x-mpeg
    • audio/mp3
    • audio/x-mp3
    • audio/mpeg3
    • audio/x-mpeg3
    • audio/mpg
    • audio/x-mpg
    • audio/x-mpegaudio

    http://filext.com/file-extension/MP3

提交回复
热议问题