首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

php&cakephp显示图片的有关问题

2013-11-23 
php&cakephp显示图片的问题参考:http://bbs.csdn.net/topics/360220433private function outputFile2Browe

php&cakephp显示图片的问题
参考:http://bbs.csdn.net/topics/360220433

private function outputFile2Brower(){        $filename=   WWW_ROOT."../../".$this->request->url;        if (!file_exists($filename)) {            throw RuntimeException("File $filename not found");        }        //TODO:这里应该智能判断type字符串        /*这个做法不对,容易导致一些图片无法显示        header("Content-Type:image/jpg");        header("Content-Length: ".filesize($filename));        readfile($filename);*/        $image = file_get_contents($filename);        //$content=addslashes($image);        header('Content-type: image/jpg');        echo $image;    }

热点排行