Advertisement
Guest User

Untitled

a guest
May 27th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.10 KB | None | 0 0
  1. <?php
  2.  
  3. function test($a)
  4. {
  5.  for ($a = 5; $a >= 0; $a --)
  6.  echo("$a, ");
  7. }
  8.  
  9. echo(test(5));
  10.  
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement