gpt4 book ai didi

php - print file_get_content 在 url, php 中给出特殊字符

转载 作者:搜寻专家 更新时间:2023-10-31 21:03:49 25 4
gpt4 key购买 nike

我想打印一个图像 url,但它给了我特殊字符。我尝试了 file_get_contents - Special characters in URL - Special case 中的所有解决方案但它并没有解决它。

我的代码:

$urlgeo = "http://geodata.nationaalgeoregister.nl/top25raster/wms?request=GetMap&service=WMS&version=1.3.0&request=GetMap&layers=top25raster&styles=&bbox=146000,451000,149000,454000&width=600&height=600&srs=EPSG:28992&format=image/png";
print file_get_contents($urlgeo);

最佳答案

您正在从 API 服务请求 PNG 图像,您应该使用适当的 header 来显示图像,

header('Content-Type: image/png'); 
$urlgeo = "http://geodata.nationaalgeoregister.nl/top25raster/wms?request=GetMap&service=WMS&version=1.3.0&request=GetMap&layers=top25raster&styles=&bbox=146000,451000,149000,454000&width=600&height=600&srs=EPSG:28992&format=image/png";
print file_get_contents($urlgeo);

关于php - print file_get_content 在 url, php 中给出特殊字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36081231/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com