PHP 서로 다른값 만 존재하는 배열
- array_unique(배열명)
<?php
$test = array("1", 2", "2", "3", "4", "4", "5", "5", "5");
$test2 = array_unique($test);
?>
print_r($test2); [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5
'Engineering WIKI > PHP' 카테고리의 다른 글
[PHP] php 이전 글, 다음 글 (0) | 2020.04.26 |
---|---|
[PHP] PHP & Jquery (select box form submit after selected) (0) | 2020.02.16 |
[PHP] 자신에게 폼 제출 (0) | 2019.08.17 |
[PHP] foreach 예제 (0) | 2019.08.12 |
[PHP] PHP 배열 → JS (0) | 2018.09.01 |