通过内容类型为Yii的php文件显示图像
发布时间:2020-12-13 16:23:22 所属栏目:PHP教程 来源:网络整理
导读:?phpclass TestController extends CController{ public function actionIndex() { $filename = "test.jpg"; $path=Yii::getPathOfAlias('webroot.protected.images') . '/'; $file=$path.$filename; if (file_exists($file)) { $img=getimagesize($file); h
<?php class TestController extends CController { public function actionIndex() { $filename = "test.jpg"; $path=Yii::getPathOfAlias('webroot.protected.images') . '/'; $file=$path.$filename; if (file_exists($file)) { $img=getimagesize($file); header('Content-Type: '.$img['mime']); readfile($file); exit; } } public function actionDisplayimg() { echo "<img src='".CController::createUrl('test/')."' />"; } } ?> 它无法在test / index或test / displayimg上显示图像.有帮助吗? 解决方法
我认为在调用readfile之前必须设置正确的标头和内容类型.
public function actionIndex() { $filename = "test.jpg"; $path=Yii::getPathOfAlias('webroot.protected.images') . '/'; $file=$path.$filename; if (file_exists($file)) { $request = Yii::app()->getRequest(); $request->sendFile(basename($file),file_get_contents($file)); } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |