충남대학교 컴퓨터공학과 이규철 교수님의 "웹 프로그래밍" 강의를 필기한 내용입니다.

다소 잘못된 내용과 구어적 표현 이 포함되어 있을 수 있습니다.

본 문서는 작성자의 귀찮음 때문에 참고 문서 링크들로 범벅되어 있습니다.

Case sensitivity

  • if, else while 같은 키워드들은 대소문자를 구분하지 않고
  • 변수 이름같은 식별자만 대소문자를 구분한다

Basic PHP

<?php
// Comments
# Comments
/* Comments */
$variable = 3 // Loosely typed variable
?>

Variable, Constant

Accessing Global Variables

Static

Constant

Array

Sort

Object

String

Formatting

Utils

Number

Utils

Operator

Loop

Function

Superglobals