PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Johan Barbier   No Timeout   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: exemple
Class: No Timeout
Split the execution of long tasks in small steps
Author: By
Last change: Added multiple asynchronous threads handling via stacks
Date: 17 years ago
Size: 1,320 bytes
 

Contents

Class file image Download
<?php
/**
* basic test reading a file
* here, we use lines to retrieve the file contents
* step is 10 lines
*/
set_time_limit (5);

$sFile = 'texte.txt';
$iSize = filesize ($sFile);

?>
<?xml version
="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <script language="Javascript" type="text/javascript" src="class/class.noTimeOut.js"></script>
        <script type="text/javascript">
        oBuffer = new noTimeOut ();

        oBuffer.declareStack ('FILE');
        oBuffer.initialize ('FILE', 'START', 0);
        oBuffer.initialize ('FILE', 'LIMIT', <?php echo $iSize; ?>);
        oBuffer.initialize ('FILE', 'STEP', 1024);
        oBuffer.initialize ('FILE', 'FILE', '../<?php echo $sFile; ?>');
        oBuffer.initialize ('FILE', 'TARGET', 'divContent');
        oBuffer.initialize ('FILE', 'MSG', 'msg');
        oBuffer.initialize ('FILE', 'SCRIPT', 'scripts/fileFetch.php');
        oBuffer.initialize ('FILE', 'TYPE', 'FILE_OCTET');

        oBuffer.startWork ('FILE');

        </script>
    </head>
    <body>
        <div id="msg">Waiting</div>
        <div id="divContent" style="width: 500px;"></div>
    </body>
</html>