我一直在尝试创建一个简单的 php 脚本来将另一个 php 生成的动态 url 转换为图像,但我得到的只是一个空白页,有人知道为什么这不起作用吗?
<?php
include('icecast.php');
$cover = ($stream['artist']['top_albums']['0']['image']['3']);
header('Content-Type: image/jpeg');
readfile('$cover');
?>
我尝试了很多不同的方法,但我仍然得到相同的结果。