Programming/PHP

[PHP] 문자열 다루기 3. 배열을 문자열로 합치기

Rexter 2022. 11. 16. 16:04
반응형

1. 기본형

 implode(구분자, 배열);

 각 배열안에 있는 값이 숫자형이든 문자형이든 리턴값은 문자열이 됩니다.

 

예제1

$array_test = array(1, 2, 3, 4, 5);
$res = implode($array_test);
echo $res;

결과

12345

 

 예제2

$array_test = array(1, 2, 3, '4', '5');
$res = implode($array_test);
echo $res;

 12345

 

 예제3

$array_test = array(
  'test1' => 'stest1',
  'test2' => 'stest2',
  'test3' => 'stest3',
  'test4' => 'stest4'
);
$res = implode($array_test);
echo $res;

 결과

stest1stest2stest3stest4

 

 예제4

$array_test = array(
  'test1' => 'stest1',
  'test2' => 'stest2',
  'test3' => 'stest3',
  'test4' => 'stest4'
);
$res = implode(', ', $array_test);
echo $res;

결과

stest1, stest2, stest3, stest4

반응형