file_put_contents('image.jpg',file_get_contents('http://static.adzerk.net/Advertisers/12f0cc69cd9742faa9c8ee0f7b0d210e.jpg'));
将文件保存在当前文件夹中可以正常工作,但是如果我尝试
file_put_contents('/subfolder/image.jpg',file_get_contents('http://static.adzerk.net/Advertisers/12f0cc69cd9742faa9c8ee0f7b0d210e.jpg'));
我有一个错误:
无法打开流:[…] 中没有这样的文件或目录
为什么会出现这个错误?如何将文件保存在子文件夹中?