PHP 字符串 join() 是预定义函数。它用于从数组元素返回一个字符串。它是 implode() 函数的别名。
用法:
join(separator,array)
参数 | 描述 | 必需/可选 |
---|---|---|
separator | 指定数组元素 | optional |
array | 要加入字符串的数组 | required |
例子1
<?php
$arr = array('Hello','PHP','Join','Function');
echo join(" ",$arr)."<br>";
?>
输出:
Hello PHP Join Function
例子2
<?php
$arr = array('Hello','PHP','Join','Function');
echo join("+",$arr)."<br>";
?>
输出:
Hello+PHP+Join+Function
例子3
<?php
$arr = array('Hello','PHP','Join','Function');
echo join("-",$arr)."<br>";
?>
输出:
Hello-PHP-Join-Function
示例 4
<?php
$arr = array('1', '2', '3', '4', '5', '6', '7', '8', '9', '10');
echo join('<br>', $arr);
?>
输出:
1 2 3 4 5 6 7 8 9 10
相关用法
- PHP string rtrim()用法及代码示例
- PHP string printf()用法及代码示例
- PHP string ord()用法及代码示例
- PHP string sha1()用法及代码示例
- PHP string setlocale()用法及代码示例
- PHP string sha1_file()用法及代码示例
- PHP string md5()用法及代码示例
- PHP string ltrim()用法及代码示例
- PHP string str_repeat()用法及代码示例
- PHP string lcfirst()用法及代码示例
- PHP string str_shuffle()用法及代码示例
- PHP string similar_text()用法及代码示例
- PHP string crypt()用法及代码示例
- PHP string str_ireplace()用法及代码示例
- PHP string str_split()用法及代码示例
- PHP string strcoll()用法及代码示例
- PHP string str_rot13()用法及代码示例
- PHP string str_pad()用法及代码示例
- PHP string quotemeta()用法及代码示例
注:本文由纯净天空筛选整理自 PHP string join() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。