Home  >  Article  >  Backend Development  >  PHP中数组定义的几种方法_php技巧

PHP中数组定义的几种方法_php技巧

WBOY
WBOYOriginal
2016-05-17 08:55:23843browse

复制代码 代码如下:

$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