Home >Backend Development >PHP Tutorial >PHP implode() 函数

PHP implode() 函数

WBOY
WBOYOriginal
2016-06-23 14:33:37996browse

PHP implode() 函数

PHP String 函数

定义和用法

implode() 函数把数组元素组合为一个字符串。

语法implode(separator,array)参数描述separator可选。规定数组元素之间放置的内容。默认是 ""(空字符串)。array必需。要结合为字符串的数组。说明

虽然 separator 参数是可选的。但是为了向后兼容,推荐您使用使用两个参数。

提示和注释

注释:implode() 可以接收两种参数顺序。但是由于历史原因,explode() 是不行的。你必须保证 separator 参数在 string 参数之前才行。

例子

输出:

Hello World! Beautiful Day!
  青春就应该这样绽放   游戏测试:三国时期谁是你最好的兄弟!!   你不得不信的星座秘密
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:php处理jsonNext article:PHP addslashes() 函数