gpt4 book ai didi

php - 如何从 URL 创建 Blob?

转载 作者:行者123 更新时间:2023-12-04 14:20:52 26 4
gpt4 key购买 nike

我有一个这样的 URL(基本 URL):

“http://blablablbalbalka.jpg”

它允许我在网站上检索图像。

我想用 PHP 检索该图像并创建一个 BLOB 以插入数据库。

我该怎么做?

我需要使用像 file_get_contents 这样的函数吗?打开?

谢谢:)

最佳答案

您可以像您说的那样使用 file_get_contents(取决于网络服务器的安全性 - 有关信息,请参阅手册)或者您可以使用 CURL 来获取图像。

$img = file_get_contents("theurl");

curl :

$ch = curl_init();

// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "theurl");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);

// grab URL and pass it to the browser
$img = curl_exec($ch);

// close cURL resource, and free up system resources
curl_close($ch);

然后将 $img 插入 BLOB 字段...

关于php - 如何从 URL 创建 Blob?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13137925/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com