Ds\Deque::join() 函数可以将所有值连接在一起作为一个字符串。
用法
public string Ds\Deque::join([ string $glue ] )
Ds\Deque::join() 函数可以通过在每个值之间使用可选的分隔符将所有值连接在一起作为一个字符串。
Ds\Deque::join() 函数可以返回连接在一起的双端队列的所有值作为一个字符串。
例子1
<?php
$deque = new \Ds\Deque([1, 2, 3, 4, 5]);
echo("The original deque:\n");
print_r($deque);
echo("\n In the string form:");
var_dump($deck->join("|"));
?>
例子2
<?php
$deque = new \Ds\Deque(["Tutorials", "Point", "India"]);
echo("The original deque:\n");
print_r($deque);
echo("\n The string form:");
var_dump($deque->join());
?>
相关用法
- PHP Ds Deque rotate()用法及代码示例
- PHP Ds Deque set()用法及代码示例
- PHP Ds Deque clear()用法及代码示例
- PHP Ds Deque construct()用法及代码示例
- PHP Ds Deque insert()用法及代码示例
- PHP Ds Deque reverse()用法及代码示例
- PHP Ds Deque remove()用法及代码示例
- PHP Ds Deque pop()用法及代码示例
- PHP Ds Deque apply()用法及代码示例
- PHP Ds Deque get()用法及代码示例
- PHP Ds Deque sort()用法及代码示例
- PHP Ds Deque push()用法及代码示例
- PHP Ds Deque count()用法及代码示例
- PHP Ds Deque capacity()用法及代码示例
- PHP Ds Deque map()用法及代码示例
- PHP Ds Deque slice()用法及代码示例
- PHP Ds Deque toArray()用法及代码示例
- PHP Ds Deque filter()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Ds Deque join() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。