php curl上传百分比

时间:2014-08-15 12:57:37

标签: php curl

我可以使用以下代码将文件上传到不同的服务器:

updateproduct($product['id'], 'uploading');
$data['video_file'] = "@".$filepath;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $json['upload_url']);
curl_setopt($ch, CURLOPT_TIMEOUT, 1550);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data); 

我想每百分比更新一次数据库。 updateproduct函数更新数据库。如何获得当前上传的百分比?

1 个答案:

答案 0 :(得分:0)

使用curl回调来升级仪表功能:CURLOPT_XFERINFOFUNCTION