Home > php教程 > php手册 > php通过array_unshift函数添加多个变量到数组前端的方法,array_unshift数组

php通过array_unshift函数添加多个变量到数组前端的方法,array_unshift数组

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 09:11:24
Original
1284 people have browsed it

php通过array_unshift函数添加多个变量到数组前端的方法,array_unshift数组

本文实例讲述了php通过array_unshift函数添加多个变量到数组前端的方法。分享给大家供大家参考。具体分析如下:

php通过array_unshift函数添加多个变量到数组前端,函数返回添加后的数组元素个数

<&#63;php
$alpha = array("a", "b", "c");
$final = array_unshift($alpha, "d","e");
print "There are $total elements in \$alpha<p>";
foreach ( $alpha as $val ) {
 print "$val<br/>";
}
print "</p>";
&#63;>
Copy after login

希望本文所述对大家的php程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template