05c07-1.php
来自「介绍PHP5的给类型函数应用」· PHP 代码 · 共 22 行
PHP
22 行
<?php// Declare two arrays:$first = array('e', 'h', 'r', 'j', 'b');$last = array('w', 'e', 'c');// Combine them using PHPs + operator$plus_union = $last + $first;// Echo this out: w e c j becho '<p>';foreach ($plus_union as $v) { echo "{$v} "; } echo "</p>\n";// Combine them using merge & unique, getting a true union$union = array_unique(array_merge($first, $last));// Echo this out: e h r j b w c echo '<p>';foreach ($union as $v) { echo "{$v} "; } echo "</p>\n";?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?