Ds\Sequence::merge() 函數可以返回將所有給定值添加到序列的結果。
用法
abstract public Ds\Sequence Ds\Sequence::merge( mixed $values )
Ds\Sequence::merge() 函數可以返回將所有給定值添加到序列的結果,實際上與將值添加到副本然後返回該副本相同。
例子1
<?php
$array1 = new \Ds\Vector([10, 20, 30, 40, 50]);
echo("The original vector elements:\n");
print_r($array1);
$array2 = new \Ds\Vector([60, 70, 80, 90, 100]);
echo("The vector elements after merge() function:\n");
print_r($array1->merge($array2));
?>
示例2
<?php
$array1 = new \Ds\Vector(["Tutorials", "Point", "Tutorix"]);
echo("The original vector elements:\n");
print_r($arr1);
$array2 = new \Ds\Vector(["Hyderabad", "Madhapur", "India"]);
echo("The vector elements after merge() function:\n");
print_r($array1->merge($array2));
?>
相關用法
- PHP Ds Vector map()用法及代碼示例
- PHP Ds Vector allocate()用法及代碼示例
- PHP Ds Vector get()用法及代碼示例
- PHP Ds Vector count()用法及代碼示例
- PHP Ds Vector sum()用法及代碼示例
- PHP Ds Vector sorted()用法及代碼示例
- PHP Ds Vector set()用法及代碼示例
- PHP Ds Vector unshift()用法及代碼示例
- PHP Ds Vector rotate()用法及代碼示例
- PHP Ds Vector last()用法及代碼示例
- PHP Ds Vector push()用法及代碼示例
- PHP Ds Vector first()用法及代碼示例
- PHP Ds Vector jsonSerialize()用法及代碼示例
- PHP Ds Vector insert()用法及代碼示例
- PHP Ds Vector construct()用法及代碼示例
- PHP Ds Vector contains()用法及代碼示例
- PHP Ds Vector toArray()用法及代碼示例
- PHP Ds Vector join()用法及代碼示例
- PHP Ds Vector copy()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - Ds Vector merge() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。