Home > php教程 > php手册 > PHP中数组定义的几种方法

PHP中数组定义的几种方法

WBOY
Release: 2016-06-06 20:27:40
Original
1935 people have browsed it

这篇文章介绍了PHP中数组定义的几种方法,有需要的朋友可以参考需要

复制代码 代码如下:


$a = array("中国人","亚州人","龙王爷","西藏自治区");

$b[0] = "苹果";
$b[1] = "苹果";
$b[2] = "苹果";
$b[3] = "苹果";
$b[4] = "苹果";

$c = array("one" => "中国人","tow" =>"亚州人","three" => "龙王爷","four" => "西藏自治区");

var_dump($a);

echo "
";

var_dump($b);

echo "
";

var_dump($c);
?>

,香港空间,虚拟主机,虚拟主机
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template