PHP Velho Oeste 2024

설치

이 함수들은 설치하지 않아도 사용할 수 있습니다; PHP 코어의 일부입니다.

add a note add a note

User Contributed Notes 1 note

up
-58
Kip
10 years ago
To write the shorthand version, you must have PHP 5.5 or greater.

<?php
$arr
= array('long', 'version');
$arr2 = ['short', 'version'];

$arr3 = array_merge($arr, $arr2, ['array', 'three', '.']);
To Top