如何从php发送图像路径

发布于 2024-12-26 07:12:48 字数 904 浏览 1 评论 0原文

我必须编写一个 php 应用程序(让我们称之为 imagepath.php)来支持 iphone/ipad 应用程序。

Imagepath.php 需要返回图像示例 www.xyz.com/whatever/image.jpeg 的路径

在 imagepath.php 中,我成功地能够从中获取正确的图像路径 这是一个示例: http://cdn.svcs.xycom/c2/37a86590e709012e2fb300163e41dd5b

如果我将此路径按原样发送到 iphone/ipad 应用程序,它不起作用,但如果我向它发送正确的图像路径,例如 www.xyz.com/whatever/image.jpeg,它就可以正常工作。

我该如何修复它?

我当前的代码

<?php
..
..
..
// With some code above I am able to get image path in remote_img 
$remote_img = $results[1][0];
//send image out
header('Content-Type: image/jpeg');
echo(file_get_contents($remote_img));
?>

这是一个指向 $remote_img 的示例图像路径 http://cdn.svcs.c2.uclick.com/c2/37a86590e709012e2fb300163e41dd5b

I have to write a php application (let us call it imagepath.php) to support a iphone/ipad app.

Imagepath.php needs to return path to an image example www.xyz.com/whatever/image.jpeg

In imagepath.php I am successfully able to get correct image path from
Here is an example: http://cdn.svcs.x.y.com/c2/37a86590e709012e2fb300163e41dd5b

If I send this path as it is to iphone/ipad app it does not work, but if i send it a proper image path such as www.xyz.com/whatever/image.jpeg it works fine.

How do I fix it?

My current code

<?php
..
..
..
// With some code above I am able to get image path in remote_img 
$remote_img = $results[1][0];
//send image out
header('Content-Type: image/jpeg');
echo(file_get_contents($remote_img));
?>

Here is a sample image path that comes to $remote_img
http://cdn.svcs.c2.uclick.com/c2/37a86590e709012e2fb300163e41dd5b

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人疚 2025-01-02 07:12:48

只要执行 file_get_contents()$remote_img 正确,您的代码就应该按原样工作

Your code should work as is, as long as $remote_img is correct when you do the file_get_contents()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文