如何从php发送图像路径
我必须编写一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只要执行
file_get_contents()
时$remote_img
正确,您的代码就应该按原样工作Your code should work as is, as long as
$remote_img
is correct when you do thefile_get_contents()