Php el免费更新脚本或示例工作代码将很有帮助。 for ($i=0; $i < 5; $i++) { $data = openssl_random_pseudo_bytes(1000000); echo "peak_me

Php el免费更新脚本或示例工作代码将很有帮助。 for ($i=0; $i < 5; $i++) { $data = openssl_random_pseudo_bytes(1000000); echo "peak_me,php,mysql,ajax,Php,Mysql,Ajax,el免费更新脚本或示例工作代码将很有帮助。 for ($i=0; $i < 5; $i++) { $data = openssl_random_pseudo_bytes(1000000); echo "peak_memory_usage = ” . memory_get_peak_usage(true) . “\n”; doSomething($data); //unset($data); } echo

el免费更新脚本或示例工作代码将很有帮助。
 for ($i=0; $i < 5; $i++) {
        $data = openssl_random_pseudo_bytes(1000000);
        echo "peak_memory_usage = ” . memory_get_peak_usage(true) . “\n”;
        doSomething($data);

        //unset($data);

    }

    echo “for loop completed, memory now at ” . memory_get_usage(true) . “\n”;

    function doSomething($data) {
        echo “size:” . strlen($data) . “\n”;
    }
 nRows = $pdo->query('select count(*) from employees')->fetchColumn();

        $users = new ArrayIterator(range(1, nRows)); // nRows are 3000000 test records
        foreach(new LimitIterator($users, 0, 50000) as $u) {
          echo $u, "\n";
        }
 $data = $DB->query("SELECT * FROM user_details")->fetchAll();

        foreach ($data as $row) {
          echo $row['username']." -- ID :" .$row['user_id']. " -- FirstName :" .$row['first_name']. "<br />\n";
        }
<!DOCTYPE html>
<html>
<head>
<title>SQL Batch List AJAX and jQuery</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
</head>
<body>
<div id="mainform">
<h2>Fetch REcords 5000 at a time</h2>
<div id="listData">
<div>
<input id="load" name="load" type="button" value ="Load Data">
<input id="cancel" name="cancel" type="button" value ="Cancel">
</div>
</div>
</div>
</body>
<script>

// counter that allows you to get a new set of rows
    var step = 0;
    // set variable if you want to restrict the number of rows will be loaded
    var maxStep = 0;//
    // how many rows should be returned
    var count = 5000;
    // if the cancel button is pressed
    var cancel = false;

    $(function() {

        $('#load').click(function(){

            getData();
        })

        $('#cancel').click(function(){
            cancel = true;
        })
    });

    function getData()
    {
        step++;

        //If cancel variable is set to true stop new calls
        if(cancel == true) return;
        // checks if the variable is set and limits how many rows to be fetched
        if(maxStep >0 $$ step >= maxStep)


        $.post('ajax.php'
        ,{
            'step':step,
            'count':count,
        }
        ,function(data, textStatus, jqXHR){   

        if(textStatus == "success")
        alert("Data: " + data);
                /*  foreach (data as $row) {

          echo $row['username']." -- ID :" .$row['user_id']. " -- FirstName :" .$row['first_name']. "<br />\n"; 
        } */
        if(textStatus == "error")
      alert("Error: " + jqXHR.status + ": " + jqXHR.statusText);


             // when it finishes processing the data, call back function
             getData();

        }
        ,'json'
    )       
}
</script>
</html>


    ==== ajax.php  =====


    step = 0;
    if(isset($_POST['step'])) $step = (int)$_POST['step'];

    $count = 0;
    if(isset($_POST['count'])) $count = (int)$_POST['count'];



    if($step>0 and $count>0)
    {
        $offset = ($step-1) * $count;        
        $limit = $offset.','.$count;

        // --------------        
        // your code here
        // --------------

        $data = $DB->query("SELECT * FROM user_details LIMIT .$limit")->fetchAll();
        $result = mysql_query($sql);
        $arr_result = array();
        foreach ($data as $row) {
               $arr_result[] = $row;
            }

        $arr_result_enc = json_encode($arr_result);
        echo $arr_result_enc;

        // echo rows
        //echo json_encode($rows);        
    }
$query = "SELECT COUNT(*) as num FROM employees";

  //$select_run = mysqli_query($conn, $select);
$result = mysqli_query($conn, $query) or die(mysql_error());
$row = mysqli_fetch_array($result);
$itemcount = $row['num']; // Roughly 300,000 total items


$batches = $itemcount / 2000; // Number of while-loop calls - around 120.
for ($i = 0; $i <= $batches; $i++) {
  $offset = $i * 2000; // MySQL Limit offset number
  $query = "SELECT first_name,last_name FROM employees  LIMIT 2500, $offset ";
  $result = mysqli_query($conn,$query) or die(mysqli_error($conn));
  while ($row = mysqli_fetch_array($result)) {
     echo $row['first_name'];
  }

  echo "<BR>";
  echo "Run Number: ".$i."<br />";
  echo "<BR>";
}
for ($i=0; $i < 5; $i++) {
    usleep(100);
    $data = openssl_random_pseudo_bytes(1000000);
}