PHP 에서 배열 선언시 array() 와 [] 의 차이점 > 개발

본문 바로가기
사이트 내 전체검색

개발

PHP 에서 배열 선언시 array() 와 [] 의 차이점

페이지 정보

profile_image
작성자 관리자 (112.♡.173.204)
댓글 0건 조회 1,458회 작성일 22-01-13 21:28

본문

## php 배열 선언

php 에서 배열 변수를 선언할 때 두가지 방법이 있다.

1. public $arr = array();
2. public $arr = [];

그럼 이 둘의 차이점이 뭘까?



## 차이점

PHP 5.4 에서 [] 가 추가되었기 때문에,
php < 5.4 에서는 array() 만 사용할 수 있다. [] 를 사용할 수 없다.


So for PHP >= 5.4 the short array syntax seems to be the de-facto standard. Only use array(), if you want your script to run on PHP <5.4.



## 사용법
```
<?php
$array = array(
    "foo" => "bar",
    "bar" => "foo",
);

// Using the short array syntax
$array = [
    "foo" => "bar",
    "bar" => "foo",
];
?>
```



## 출처
https://stackoverflow.com/questions/26651996/php-array-vs-in-method-and-variable-declaration
https://www.php.net/manual/en/language.types.array.php

추천0

댓글목록

등록된 댓글이 없습니다.

Total 386건 3 페이지
  • RSS
개발 목록
번호 제목 조회 추천 날짜
3463171006-15
3451770005-04
3441515003-11
3431969003-04
3421898002-21
3412065002-20
3402243002-18
3391765002-15
3381592002-13
3372103002-08
3361616002-08
3351652002-03
3341569001-31
3332652001-29
3321594001-28
열람중1459001-13
3301712012-23
3292376012-20
3284437005-19
3273658005-15

검색


사이트 정보

Copyright © Baragi.Net. All rights reserved.