0

我正在尝试使用 PECL uploadprogress 扩展来实现一个非常基本的 AJAX 上传进度条。我找到了适用于所有浏览器的示例代码:http: //svn.php.net/viewvc/pecl/uploadprogress/trunk/examples/。它使用 iframe 将更新写入。我想获取更新并做一些 jquery 来构建进度条。这是我的代码(我知道我没有写代码来说明上传结束的时间)client.php:

<?php
$id = md5(microtime() . rand());
?>

<!DOCTYPE html>
<html>

<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<script type="text/javascript">
        function getProgress(){
            $.get("progress.php", {"ID":'<?php echo $id ?>'}, function(data){
                console.log(data);
            });
            window.setTimeout(getProgress(), 5000);
        }
</script>

<body>
    <form onsubmit="getProgress()" target="_self" enctype="multipart/form-data" method="post">
        <input type="hidden" name="UPLOAD_IDENTIFIER" value="<?php echo $id;?>" />
        <label>Select File:</label>
        <input type="file" name="file" />
        <br/>
        <label>Select File:</label>
        <input type="file" name="file2" />
        <br/>
        <label>Upload File:</label>
        <input id="submitButton" type="submit" value="Upload File" />
    </form>
</body>
</html>

和progress.php:

<?php
if (function_exists("uploadprogress_get_info")) {

    $info = uploadprogress_get_info($_GET['ID']);
} else {
    $info = false;
}

$progress = ($info['bytes_uploaded']/$info['bytes_total'])*100;

echo $progress;

我出错了,打印出来的都是 0。有任何想法吗?

4

1 回答 1

1

尝试更换

$progress = ($info['bytes_uploaded']/$info['bytes_total'])*100;

$progress = ($info['bytes_uploaded']*100)/$info['bytes_total']; 

$info['bytes_uploaded']和都是$info['bytes_total']整数,所以除法不是浮点数,而是向下舍入为整数。

于 2012-06-22T21:06:43.293 回答