Sha256: aa2ffe1fe2063596205fcc3a2fa2943fb659fc330e5043d22e22c69366c6810e
Contents?: true
Size: 517 Bytes
Versions: 24
Compression:
Stored size: 517 Bytes
Contents
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ $outputs = array( 'First iteration output', 'Second iteration output', 'One more iteration output', 'This took more time', ); $iterationTime = 10000; foreach ($outputs as $output) { usleep($iterationTime); $iterationTime *= 10; echo $output."\n"; }
Version data entries
24 entries across 24 versions & 1 rubygems