수업소개
배열이 무엇인지 살펴보고, 그 형식을 배우는 시간입니다.
array.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <!DOCTYPE html> <html> <head> <meta charset= "utf-8" > <title>Array</title> </head> <body> <h1>Array</h1> <?php $coworkers = array ( 'egoing' , 'leezche' , 'duru' , 'taeho' ); echo $coworkers [1]. '<br>' ; echo $coworkers [3]. '<br>' ; var_dump( count ( $coworkers )); array_push ( $coworkers , 'graphittie' ); var_dump( $coworkers ); ?> </body> </html> |