PHP Classes

File: demos/time-wasting-file.php

Recommend this page to a friend!
  Classes of Lucas Marques Dutra   PHP Async   demos/time-wasting-file.php   Download  
File: demos/time-wasting-file.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: PHP Async
Run scripts in parallel using the PHP CLI command
Author: By
Last change:
Date: 18 days ago
Size: 154 bytes
 

Contents

Class file image Download
<?php

for ($i = 1; $i <= 5; $i++) {
    echo
$i . '...' . PHP_EOL;
   
sleep(1);
}

file_put_contents('demo-file.txt', 'Hello users! At: ' . date('c'));