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

PHP中数组定义的几种方法

WBOY
WBOYOriginal
2016-06-06 20:27:401954browse

这篇文章介绍了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);
?>

,香港空间,虚拟主机,虚拟主机
Statement:
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