Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们如何在不使用 php.ini 的 copy() 的情况下将图像文件从源(另一台服务器)复制到目标(我们的服务器)。
有没有其他可能的方法?
谢谢..
<?php $url="http://foo.com/foo.jpg"; $name="foo.jpg"; $img= file_get_contents($url); file_put_contents($name,$img); ?>