728x90
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$array = [1, 2, 3, 4, 5, 5]; | |
$del = [1, 3, 5]; | |
$result = array_diff($array, $del); | |
/* | |
Array | |
( | |
[1] => 2 | |
[3] => 4 | |
) | |
*/ |
반응형
'Programming > PHP' 카테고리의 다른 글
나이스 본인 인증 - access_token 발급받기 (0) | 2023.01.11 |
---|---|
인스타그램 피드 갖고 오기 - 1, 앱 만들기 (0) | 2022.12.28 |
외부 SMTP를 이용해서 메일 보내기 - 2(feat. PHPMailer)[추가@20230412] (0) | 2022.12.07 |
외부 SMTP를 이용해서 메일 보내기 - 1(feat. PHPMailer) (0) | 2022.11.25 |
[Codeigniter3]외부 라이브러리(ex PHPExcel) 연동하기(?) (0) | 2022.11.18 |