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.
我想做一个图片上传API 例子:http://mysite.com/api.php?url=http://test.com/1.jpg 如何写脚本可以从URL中获取图片URL?还要检查图像的扩展名然后上传到我的网站并重定向到图像。谢谢。
让 api.php 在您的服务器上运行 cURL 命令以获取提交给您的 API 的文件的 URL,然后将文件下载到您想要的位置。然后让它将图像的位置返回到您的脚本以进行最终处理,以包括重命名和您想要完成的任何数据库存储。