Advertisement
xenoside

Untitled

Jun 23rd, 2015
425
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.13 KB | None | 0 0
  1. <?php
  2.  
  3. function _thread($pid) {
  4.   echo "I'm $pid\n";
  5. }
  6. $i = 10;
  7. $j = 0;
  8. while($i --> $j) _thread($i);
  9. /* $i to $j like golang */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement