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

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

개발

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

페이지 정보

profile_image
작성자 관리자 (112.♡.173.204)
댓글 0건 조회 1,503회 작성일 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건 6 페이지
  • RSS
개발 목록
번호 제목 조회 추천 날짜
2861997002-27
2851695002-26
2841935002-26
2832404002-25
2822364002-17
2812318002-17
2802384001-14
2792087011-07
2781816010-07
2772123010-07
2762480010-06
2752406010-06
2742232009-27
2732681009-07
2721967009-06
2712276006-30
2702609006-30
2692898006-29
2683500006-29
2672105006-22

검색


사이트 정보

Copyright © Baragi.Net. All rights reserved.