PHP Array
Foreach as.. PHP 의 배열을 위한 반복문이다$color = array("red", "blue", "green", "yellow", "white");foreach ($color as $item) {echo "$item "; } PHP 5.4 부터는 다음과 같이 선언도 가능하다$test_arr = [1,2,3,4];echo $test_arr[1]."\n"; PHP 5.4 부터는 dereferencing 이 가능하다function getfruits(){return ["apple", "fineapple", "banana", "orange"];}echo getfruits()[1]; 연관 배열 사용$color = array('R' => "Red", 'G' => "Green", 'B' => "Blue")..
2016. 8. 3.