implode()
把数组转化成字符串;
基础语法:
string implode(str $connect ,array $array);
string - 返回的字符串;
connect - 连接符;
array - 被操作的数组;
实例:
$a_1 = ['this','is','a','dog','!'];
print_r(' ',$a_1);
#output : this is a dog !
相关函数:
implode()
把数组转化成字符串;
基础语法:
string implode(str $connect ,array $array);
string - 返回的字符串;
connect - 连接符;
array - 被操作的数组;
实例:
$a_1 = ['this','is','a','dog','!'];
print_r(' ',$a_1);
#output : this is a dog !
相关函数: