Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function _thread($pid) {
- echo "I'm $pid\n";
- }
- $i = 10;
- $j = 0;
- while($i --> $j) _thread($i);
- /* $i to $j like golang */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement