PHPを使用して、大きなファイルを読み込み、要求されたときに現在の行番号を送信するwhileループを作成したいと考えています。 Ajaxを使用して、現在の行数を取得してページに出力したいと思います。 htmlボタンを使用すると、1回だけ実行されるjavascriptスレッドをクリックしてアクティブ化または終了し、ajaxメソッドを呼び出すことができます。PHP - LoopデータをAjaxでフラッシュする
私はそれに打撃を与えているが、何らかの理由で、それはコメントアウトだとき、私はecho str_repeat(' ',1024*64);
機能をコメントアウトしない限り、何も印刷は、それがループ全体の結果を示しています。
1行(複数可)processed.2行を処理された行3行4行5行6行6行7行8行9処理9行s)が処理されました.10行が処理されました。代わりに別の行にそれらを示すの一行で
が好き:1 row(s) processed.
2 row(s) processed.
3 row(s) processed.
4 row(s) processed.
5 row(s) processed.
6 row(s) processed.
7 row(s) processed.
8 row(s) processed.
9 row(s) processed.
10 row(s) processed.
また、私はJavaScriptのスレッドを終了するかどうかはわかりません。合計で2つの問題:
1. It's returning the entire While loop object at once instead of each time it loops.
2. I'm not sure how to terminate the JQuery thread.
アイデアをお持ちですか?以下は私のコードです。
msgserv.php
<?php
//Initiate Line Count
$lineCount = 0;
// Set current filename
$file = "test.txt";
// Open the file for reading
$handle = fopen($file, "r");
//Change Execution Time to 8 Hours
ini_set('max_execution_time', 28800);
// Loop through the file until you reach the last line
while (!feof($handle)) {
// Read a line
$line = fgets($handle);
// Increment the counter
$lineCount++;
// Javascript for updating the progress bar and information
echo $lineCount . " row(s) processed.";
// This is for the buffer achieve the minimum size in order to flush data
//echo str_repeat(' ',1024*64);
// Send output to browser immediately
flush();
// Sleep one second so we can see the delay
//usleep(100);
}
// Release the file for access
fclose($handle);
?>
asd.html
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript" charset="utf-8"></script>
<style type="text/css" media="screen">
.msg{ background:#aaa;padding:.2em; border-bottom:1px #000 solid}
.new{ background-color:#3B9957;}
.error{ background-color:#992E36;}
</style>
</head>
<body>
<center>
<fieldset>
<legend>Count lines in a file</legend>
<input type="button" value="Start Counting" id="startCounting" />
<input type="button" value="Stop Counting!" onclick="clearInterval(not-Sure-How-To-Reference-Jquery-Thread);" />
</fieldset>
</center>
<div id="messages">
<div class="msg old"></div>
</div>
<script type="text/javascript" charset="utf-8">
function addmsg(type, msg){
/* Simple helper to add a div.
type is the name of a CSS class (old/new/error).
msg is the contents of the div */
$("#messages").append(
"<div class='msg "+ type +"'>"+ msg +"</div>"
);
}
function waitForMsg(){
/* This requests the url "msgsrv.php"
When it complete (or errors)*/
$.ajax({
type: "GET",
url: "msgsrv.php",
async: true, /* If set to non-async, browser shows page as "Loading.."*/
cache: false,
timeout:2880000, /* Timeout in ms set to 8 hours */
success: function(data){ /* called when request to barge.php completes */
addmsg("new", data); /* Add response to a .msg div (with the "new" class)*/
setTimeout(
'waitForMsg()', /* Request next message */
1000 /* ..after 1 seconds */
);
},
error: function(XMLHttpRequest, textStatus, errorThrown){
addmsg("error", textStatus + " (" + errorThrown + ")");
setTimeout(
'waitForMsg()', /* Try again after.. */
"15000"); /* milliseconds (15seconds) */
},
});
};
$('#startCounting').click(function() {
waitForMsg();
});
</script>
</body>
</html>
試験。使用
1
2
3
4
5
6
7
8
9
10
こんにちは、ありがとうございました。私はあなたの提案を試みたが、どれも私のために働いていない。私が提供した3つのファイルを保存して、あなたのために働くかどうか教えてください。もしそうなら、あなたが見つけたものを分かち合うことができますか? – ThreaT
@ user1191027 read編集 – Vyktor
もう一度、ありがとう - あなたの新しい提案を試みたがまだ運がありません...彼らはあなたのために働いたのですか? – ThreaT