$--a 인가? --$a 인가? 고민을 허무하게 해결 ㅋㅋㅋ
Example | Name | Effect |
---|---|---|
++$a | Pre-increment | Increments $a by one, then returns $a. |
$a++ | Post-increment | Returns $a, then increments $a by one. |
--$a | Pre-decrement | Decrements $a by one, then returns $a. |
$a-- | Post-decrement | Returns $a, then decrements $a by one. |
'Programming > php' 카테고리의 다른 글
php framework / 읽을꺼리 (0) | 2014.04.09 |
---|---|
php 메뉴얼 (0) | 2014.03.28 |
php $_SERVER 변수 (0) | 2013.07.07 |
index.php가 다운받아지는 문제점 -_- (0) | 2013.02.22 |
php 간단정리 (0) | 2012.11.26 |