第 8 章 使用数组

第 8 章 使用数组

8.2 创建数组


结果:

red


结果:

orange


结果:

yellow

8.2.1 创建关联数组

 "Bob",
                   "occupation" => "superhero",
                   "age" => 30,
                   "special power" => "x-ray vision");
echo $character['occupation'];
?>

结果:

superhero

8.3 一些和数组有关的函数

http://php.net/manual/en/language.types.array.php

你可能感兴趣的:(第 8 章 使用数组)