Advertisement
Guest User

php help

a guest
Sep 17th, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. when to use curly braces {}, Parentheses ( )  and Square brackets [ ] on php <latest>?
  2.  
  3.  
  4.  
  5. im so confuesd when to use curly braces {}, Parentheses ( )  and Square brackets [ ] on php
  6.  
  7.  
  8. here i wrote a simple script
  9.  
  10.  
  11.  <?
  12.  for ($i = 0; $i < 10; $i++)
  13.         {
  14.  
  15.         echo "Loop  #$i <br>";
  16.         }
  17.  ?>
  18.  
  19.  
  20.  
  21.  
  22. now if we change the {} to ()
  23.  
  24.      
  25.        
  26.  
  27.             http://pastebin.com/SXAtUmkf
  28.  
  29. as you can see now it wont work
  30.  
  31.  
  32.  
  33. test here http://www.compileonline.com/execute_php_online.php ( the last and first code)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement