在 php 中导入名称不正确的文件内容
无论如何,是否可以将具有如下名称的文件的内容获取到 php 脚本中 :: @file_get_contents()
不起作用。
/pictures/308/general/big/VILLA ROSE (22).jpg
和 /pictures/308/general/big/玫瑰别墅 (22).jpg
Is there anyway to get the contents of files with names like those below into a php script :: @file_get_contents()
isn't working.
/pictures/308/general/big/VILLA ROSE (22).jpg
and
/pictures/308/general/big/VILLA ROSE (22).jpg
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这对我有用:
检查您的绝对路径是否正确。
This works for me:
Check if your absolute path is correct.
您可以使用 cURL
请参阅:
http://blog.unitedheroes.net/curl/
http://phpsense.com/php/php-curl-functions.html
http://devzone.zend.com/article/1081
http://coderscult.com/php/php-curl/2008/05/20/php-curl-tutorial-and-example/
对于特定于图像使用:
http://www.bitrepository.com/download-image.html
http://www.edmondscommerce.co.uk/php/php- save-images-using-curl/
如果不知道你想要实现什么目标,很难变得更精确
You can use cURL
See:
http://blog.unitedheroes.net/curl/
http://phpsense.com/php/php-curl-functions.html
http://devzone.zend.com/article/1081
http://coderscult.com/php/php-curl/2008/05/20/php-curl-tutorial-and-example/
For image specific use:
http://www.bitrepository.com/download-image.html
http://www.edmondscommerce.co.uk/php/php-save-images-using-curl/
Its difficult to be more precise without knowledge of what you're trying to achieve
我最终得到了这个,其中 $va 保存图像 src:
I ended up with this, where $va holds the image src: