我正在使用这种技术将图像存储为mysql中的blob
INSERT INTO aw_offers_v2
(
id,name,description,payout_type,
payout,expiration_date,creation_date,preview_url,
tracking_url,categories,countries,countries_short,
api_key,network_id, icon)
VALUES
('$id','$name','$description','$payout_type',
'$payout','$expiration_time','$creation_time','$preview_url',
'$tracking_url','$categories','$countries','$countries_short',
'$api','$api_url','".mysql_real_escape_string(file_get_contents($cover_image_src))."')
现在的问题是,如何获得blob元素的大小并将其存储在另一个字段中
如果blob是5.34kb,我需要获取它并存储到另一个名为blob_size的字段中
答案 0 :(得分:0)
假设内容位于网址$cover_image_src
中,您可以使用以下技术来获取尺寸,
$headers = get_headers($cover_image_src, 1);
$content_length = $headers["Content-Length"];
答案 1 :(得分:0)
简单方法 - 您可以使用strlen( file_get_contents($cover_image_src) )