这是回调在 C 中的外观:
typedef int (*curl_progress_callback)(void *clientp,
double dltotal,
double dlnow,
double ultotal,
double ulnow);
可能在 PHP 中它应该看起来像
curl_progress_callback($clientp, $dltotal, $dlnow, $ultotal, $ulnow)
因此,假设您有 page.html,它在 iframe 中加载了一个 .php 文件。
在您的 php 脚本中,您将需要以下函数:
curl_setopt($curl, CURLOPT_PROGRESSFUNCTION, 'curl_progress_callback');
curl_setopt($curl, CURLOPT_BUFFERSIZE,64000);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
这应该会产生类似于以下内容的输出:
0
0.1
0.2
0.2
0.3
0.4
...
然后在 iframe 页面上,您将有一个进度条
<div id="progress-bar">
<div id="progress">0%</div>
</div>
CSS会是这样的
#progress-bar {
width: 200px;
padding: 2px;
border: 2px solid #aaa;
background: #fff;
}
#progress {
background: #000;
color: #fff;
overflow: hidden;
white-space: nowrap;
padding: 5px 0;
text-indent: 5px;
width: 0%;
}
javascript
var progressElement = document.getElementById('progress')
function updateProgress(percentage) {
progressElement.style.width = percentage + '%';
progressElement.innerHTML = percentage + '%';
}
您可以让它输出 JavaScript 并让它为您更新进度条,例如:
<script>updateProgress(0);</script>
<script>updateProgress(0.1);</script>
<script>updateProgress(0.2);</script>
您可能对更多示例代码感兴趣