Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function bucles() {
  2. $resultado = [];
  3.  
  4. for ($i=0; $i < 10 ; $i++) {
  5. $resultado = [i];
  6. }
  7.  
  8.  
  9. return $resultado;
  10. }
  11.  
  12. function bucles() {
  13. $resultado = [];
  14.  
  15. for ($i=0; $i < 10 ; $i++) {
  16. $resultado[] = $i;
  17. }
  18.  
  19.  
  20. return $resultado;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement