PHP - Ds Vector::join() 函数



PHP 的 Ds\Vector::join() 函数将向量的所有值连接成单个字符串。此函数不会修改原始向量,并返回一个新的字符串。

此函数接受一个可选参数作为分隔符。如果将参数传递给函数,则连接的值将由给定的分隔符分隔。如果没有指定分隔符,则值将无需分隔符地连接。

语法

以下是 PHP Ds\Vector::join() 函数的语法:

public Ds\Vector::join(string $glue = ?): string

参数

此函数接受一个名为“glue”的单个参数,如下所述:

  • glue − 一个可选的分隔符,用于分隔连接的值。

返回值

此函数返回将向量的所有值连接在一起的字符串。

示例 1

如果省略“glue”(例如分隔符)参数,则 PHP Ds\Vector::join() 函数将连接所有值,无需任何分隔符:

<?php 
   $vector = new \Ds\Vector([1, 2, 3, 4, 5]);
   echo "The original vector: \n";   
   print_r($vector);
   echo("The vector elements after join(): ");
   #using join() function   
   print_r($vector->join());
?>

输出

以上程序产生以下输出:

The original vector:
Ds\Vector Object
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
    [4] => 5
)
The vector elements after join(): 12345

示例 2

如果我们将“glue”参数值设置为“-”,则值将连接在一起,并由给定的分隔符分隔。

以下是 PHP Ds\Vector::join() 函数的另一个示例。我们使用此函数使用指定的分隔符“-”将向量的所有值连接在一起:

<?php 
   $vector = new \Ds\Vector(["Tutorials", "Point", "Tutorix"]);
   echo "The original vector: \n";   
   print_r($vector);
   $glue = "-";
   echo "The separator is: '".$glue."'";
   echo "\nThe Vector elements after join(): ";
   #using join() function   
   print_r($vector->join($glue)); 
?>

输出

执行上述程序后,将显示以下输出:

The original vector:
Ds\Vector Object
(
    [0] => Tutorials
    [1] => Point
    [2] => Tutorix
)
The separator is: '-'
The Vector elements after join(): Tutorials-Point-Tutorix

示例 3

在下面的示例中,我们使用join() 函数将向量的所有值连接在一起,并使用和不使用分隔符:

<?php 
   $vector = new \Ds\Vector(['a', 'e', 'i', 'o', 'u']);
   echo "The original vector: \n";   
   print_r($vector);
   $glue = "|";
   echo "\nThe Vector elements without separator: ";
   print_r($vector->join());
   echo "\nThe separator is: '".$glue."'";
   echo "\nThe Vector elements with separator: ";
   print_r($vector->join($glue)); 
?>

输出

执行上述程序后,它将生成以下输出:

The original vector:
Ds\Vector Object
(
    [0] => a
    [1] => e
    [2] => i
    [3] => o
    [4] => u
)

The Vector elements without separator: aeiou
The separator is: '|'
The Vector elements with separator: a|e|i|o|u
php_function_reference.htm
广告