foreach ($arr as $value) {
    echo 
"값: $value<br />\n";
}


foreach ($arr as $key => $value) {
    echo 
"키: $key; 값: $value<br />\n";
}

'PHP' 카테고리의 다른 글

PHP 형변환  (0) 2019.02.27
PHP 문자열 함수  (0) 2019.02.19
PHP 소수점 출력 방법  (0) 2018.08.09
PHP 다운로드 non thread safe, thread safe 차이  (0) 2018.08.09

+ Recent posts