mirror of
https://github.com/php/phpruntests.git
synced 2026-03-25 08:32:21 +01:00
18 lines
170 B
PHP
18 lines
170 B
PHP
<?php
|
|
|
|
include 'taskSleep.php';
|
|
|
|
|
|
function createTaskList()
|
|
{
|
|
$list = array();
|
|
|
|
for ($i=0; $i<10; $i++) {
|
|
|
|
$list[$i] = new taskSleep($i%3);
|
|
}
|
|
|
|
return $list;
|
|
}
|
|
|
|
?>
|