PHP 배열을 문자열로 쉽게 만들기
결론적으로 implode() 함수를 사용하면 쉽다. 함수 설명 참조 링크 https://www.php.net/manual/en/function.implode.php PHP: implode - Manual It's not obvious from the samples, if/how associative arrays are handled. The "implode" function acts on the array "values", disregarding any keys: 'four', 'five', '3rd' => 'six' );echo implode( ',', $a ),'/', implode( ',', $b );?>outputs:one,two,three/fou www.php.net 위 예제를 보면 $a..
더보기