12345678910111213141516171819202122 |
- <?php
- $txnId = $_GET['txnId'];
- define('LAST_PROGRESS_STATE_INDEX_FILE', '/tmp/rezDeployProgressStateIndex' . $txnId);
- $logs = '';
- /* Generate long logs. */
- for($i = 0; $i < 100; $i++) {
- $logs .= "1111 <br/>";
- }
- $jsonOutput = array(
- 'txnId' => $txnId,
- 'logs' => $logs );
- header("Content-type: application/json");
- print (json_encode($jsonOutput));
- ?>
|