php $arr = array('Test1', 'Test2', 'Test3'); $str = join(",", $arr); echo $str; ?> Output: Test1,Test2,Test3. Implode: implode Returns a string from array ...
確定! 回上一頁