我有 2 个网站,并希望使用 PHP在B面内重用站点A的图片。
我已经调查过@readfile()
了
header('Content-Type: image/png');
echo(file_get_contents('http://site_a.com/img.png'));
因为我喜欢在我的内容中显示图片,所以我得到一个明显的标题已经发送错误。
有没有办法绕过这个或其他功能来显示png
存储在我的其他网站上的图片?
要求显示代码:
<html>
<head>
<title>test</title>
</head>
<body>
<h1>Content</h1>
<?php
header('Content-Type: image/png');
@readfile('http://site_a.net/img/picture.png');
?>
</body>
</html>