PHP Basic Syntax


/ Published in: PHP
Save to your folder(s)

PHP에서 사용하기 위한 기본문법


Copy this code and paste it in your HTML
  1. <?php
  2. /**************************/
  3. //배열선언방법
  4. /**************************/
  5. $entry = array('Sample Title','April 13,2009', 'Jason');
  6. echo $entry[0], ' by ', $entry[2];
  7. //Sample Title by Jason 이 출력됨
  8.  
  9. /**************************/
  10. //다른 방식의 배열선언(Key,Value 스타일)
  11. /**************************/
  12. $entry2 = array(
  13. 'title' => 'Sample Title',
  14. 'date' => 'April 13,2009'
  15. );
  16. echo $entry['title']; //ê²°ê³¼: Sample Title
  17.  
  18. /**************************/
  19. //문자열 결합(String Concatenation) - period(.)으로 연결
  20. /**************************/
  21. $foo = "This is a " . "string.!";
  22. echo $foo;
  23.  
  24. /**************************/
  25. //Echo출력방식 쌍따옴표,홑따옴표에 따라 달라짐
  26. /**************************/
  27. $test = "abcde";
  28. echo "hello world $test"; //ê²°ê³¼:hello world abcde
  29. echo 'hello world $test'; //ê²°ê³¼:hello world $test
  30.  
  31. /**************************/
  32. //echo를 이용하여 배열 출력하기, 중괄호({})를 사용하지 않는 경우에는
  33. //인덱스에 홑따옴표가 없는 것에 주의
  34. /**************************/
  35. $person = array('name' => 'Jason', 'age'=>23);
  36. echo "This Person's name is {$person['name']} and he is $person[age]";
  37.  
  38. /**************************/
  39. //printf사용구문
  40. /**************************/
  41. $amt1 = 2.55;
  42. $amt2 = 3.55;
  43. $total = $amt1 + $amt2;
  44. $string = "변수입니닷.";
  45.  
  46. echo "총 가격은 $",$total, "<br />";
  47. printf("총 가격은 $%.2f <br />", $total); //포맷팅 용도로 활용가능
  48. printf("문자열 변수로 입력가능 %s", $string);
  49.  
  50. />

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.