728x90
| <?php | |
| /** | |
| * Created by JetBrains PhpStorm. | |
| * User: kangnaru | |
| * Date: 13. 10. 12. | |
| * Time: 오전 10:18 | |
| * To change this template use File | Settings | File Templates. | |
| */ | |
| $arr = array(1, 3, 9, 2); | |
| array_push($arr,10); | |
| array_push($arr,13); | |
| print_r($arr); | |
| ?> |
앞에 반드시 요소가 있어야 하는 것은 아니다.
<?php
$arr = Array();
array_push($arr, 10);
?>
과 같이도 사용 가능하다
'WEB' 카테고리의 다른 글
| mysqli::real_escape_string (0) | 2018.01.14 |
|---|---|
| PHP 예제 소스] 숫자 천자리마다 쉼표, 1000자리 (3자리)마다 콤마; Comma Number (0) | 2018.01.14 |
| Simple PHP Login Register Script with OOP (0) | 2018.01.14 |
| PHP: “Notice: Undefined variable”, “Notice: Undefined index”, and “Notice: Undefined offset” (0) | 2018.01.14 |
| How to create a fade-in countdown timer? (0) | 2018.01.14 |