readfile()有时无法处理图像

时间:2015-11-12 16:13:55

标签: php

我有一个读取文件的功能。我想在下载其他文件类型时显示图像。 但在尝试查看图像时,我的代码变得笨重。以下是我的代码:

public function download($file_name=NULL){
    if($file_name == NULL):
    $file_name = $this->uri->segment('3');
    endif;

    $tr= explode(".", $file_name);
    $array = array("JPG", "JPEG", "jpg", "jpeg", "PNG", 
"png", "GIF", "gif", "tiff", "TIFF");
    if(!in_array($tr[1], $array)):
    header('Content-Disposition: attachment; filename="'.$file_name.'"');
    else:
    readfile(BASEPATH.'../assets/images/upload/'.$file_name);
    endif;
}

我正在尝试使用以下方式查看图像:

<img class="pull-left" src="'.$this->download($img).'" /> <!-- This is image1.jpg -->

我得到这些类型的不可读代码:

�r��g��7�hi99 c�Zi�zZ����ԕ�jXn⸑�7V+�56���6��qN�(�Ub��9���>tba�,� ߕs־'K�uY��a�S��ۜ�u�b�&���Z�=�]�i���
=n�I&I�#<�{dw� mgO}a���f�h�"����+����m��n%��Mnf�

请帮我找到问题。

0 个答案:

没有答案