implode,explode
implode 배열을 구분자를 통해서 문자열로 만든다. 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 explode 구..
2019. 6. 20.