PHP Yanlış mime-tipi

0 Cevap php

Microsoft Power Point oluşturulan bir Power Point 2000 belgesi (. Ppt) yüklerken öyle bir uygulama / vnd.ms-ofis bir mim türü dönen. Ben uygulama / vnd.ms-powerpoint geri gelmesini beklediğiniz:

    <?php
    $finfo = new finfo(FILEINFO_MIME);
    $mime_type = $finfo->file($filepath);

    // strip off the mime encoding information
    $mime_type = substr($mime_type, 0, strpos($mime_type, ';'));

Herhangi bir fikir neden bu belki durumda?

Ben şu çalıştırıyorum:

  • Ubuntu
  • PHP 5.2
  • Apache 2

0 Cevap