//我们可以通过defind定义一个系统路径
define('VIDEO_PATH', __DIR__ . "/admin/images/");
//然后通过file_get_contents去读取输出
$img = VIDEO_PATH . "1.png";
$str=file_get_contents($img);
header("Content-Type: image/jpeg;text/html; charset=utf-8");
echo $str;die;
thinkphp5.1如何将图片放在其他路径并访问
最新推荐文章于 2022-01-27 22:58:25 发布