Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Lines | 14 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
7 | public function bar($t) |
||
8 | { |
||
9 | echo "Starting thread #$t" . PHP_EOL; |
||
10 | |||
11 | sleep(1 * rand(1, 5)); |
||
12 | for ($i = 0; $i < 10; $i++) { |
||
13 | echo "Hello from thread #$t, i=$i" . PHP_EOL; |
||
14 | sleep(1); |
||
15 | } |
||
16 | echo "Ending thread #$t" . PHP_EOL; |
||
17 | |||
18 | // Note: this line below require the file "config/cacheconfig.php" exists |
||
19 | return "$t: [[[[[[" . time() . "]]]]]]"; |
||
20 | } |
||
21 | } |
||
56 |