在PHP中,可以使用explode() 函數將一個字串轉化為一個一維陣列,也可以使用一個功能與之相反的函數——implode()來將陣列轉為字串。
implode() 函數可以將一個一維陣列轉化為字串,其語法格式如下:
implode($glue, $array) 或者 implode($array)
其中,$glue 用來設定一個字串,表示使用 $glue 將陣列每個元素連線在一起,預設情況下 $glue 為空字串;$array 為需要轉換的陣列。
提示:implode() 函數的 $glue 引數是可選的,可以省略。
【範例】使用 implode() 函數將陣列轉換為字串。
<?php header("Content-Type: text/html; charset=utf-8"); $arr = ['TW511.COM','PHP教學','https://www.php.cn','implode()函數','陣列轉字串']; $str = implode($arr); echo $str.'<br>'; $str = implode(' ',$arr); echo $str.'<br>'; $str = implode(',',$arr); echo $str.'<br>'; $str = implode('--',$arr); echo $str.'<br>'; ?>
執行結果如下:
TW511.COMPHP教學https://www.php.cnimplode()函數陣列轉字串 TW511.COM PHP教學 https://www.php.cn implode()函數 陣列轉字串 TW511.COM,PHP教學,https://www.php.cn,implode()函數,陣列轉字串 TW511.COM--PHP教學--https://www.php.cn--implode()函數--陣列轉字串
更多相關知識,請關注 PHP中文網!!
以上就是php怎麼把陣列轉為字串?的詳細內容,更多請關注TW511.COM其它相關文章!