/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Process/Tests/KillableProcessWithOutput.php
25 строк
512 B
Fabien Potencier
fixed CS
16 янв 2019, 23:35
16 янв 2019, 23:35
d2098d7
Код
Авторство
О чём код?
<?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 = [ '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"; }