将平面数组转换为分隔字符串

发布于 2024-10-21 01:35:33 字数 77 浏览 3 评论 0原文

我有一个字符串数组,我需要构建一个由一些值分隔的字符串 像逗号这样的字符

$tags;

I have an array of strings and I need to build a string of values separated by some
character like comma

$tags;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

烟雨凡馨 2024-10-28 01:35:33

有一个简单的函数,名为 implode

$string = implode(';', $array);

There is a simple function called implode.

$string = implode(';', $array);
栀子花开つ 2024-10-28 01:35:33

您应该使用 implode 函数。

例如,implode(' ',$tags); 将在数组中的每个项目之间放置一个空格。

You should use the implode function.

For example, implode(' ',$tags); will place a space between each item in the array.

亽野灬性zι浪 2024-10-28 01:35:33

如果有人不想使用 implode,那么你也可以使用以下函数:

function my_implode($separator,$array){
   $temp = '';


   foreach($array as $key=>$item){
       $temp .=  $item; 
       if($key != sizeof($array)-1){
            $temp .= $separator  ; 
       }
   }//end of the foreach loop

   return $temp;
}//end of the function

$array = array("One", "Two", "Three","Four");


$str = my_implode('-',$array);
echo $str;

If any one do not want to use implode so you can also use following function:

function my_implode($separator,$array){
   $temp = '';


   foreach($array as $key=>$item){
       $temp .=  $item; 
       if($key != sizeof($array)-1){
            $temp .= $separator  ; 
       }
   }//end of the foreach loop

   return $temp;
}//end of the function

$array = array("One", "Two", "Three","Four");


$str = my_implode('-',$array);
echo $str;
豆芽 2024-10-28 01:35:33

还有一个函数 join 这是 implode 的别名。

There is also an function join which is an alias of implode.

苍风燃霜 2024-10-28 01:35:33

使用 implode

$array_items = ['one','two','three','four']; 
$string_from_array = implode(',', $array_items);

echo $string_from_array;
//output: one,two,three,four

使用 join (内爆的别名)

$array_items = ['one','two','three','four']; 
$string_from_array = join(',', $array_items);

echo $string_from_array;
//output: one,two,three,four

Using implode

$array_items = ['one','two','three','four']; 
$string_from_array = implode(',', $array_items);

echo $string_from_array;
//output: one,two,three,four

Using join (alias of implode)

$array_items = ['one','two','three','four']; 
$string_from_array = join(',', $array_items);

echo $string_from_array;
//output: one,two,three,four
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文