Home > Backend Development > PHP Tutorial > Several methods of defining arrays in PHP_PHP tutorial

Several methods of defining arrays in PHP_PHP tutorial

WBOY
Release: 2016-07-21 16:12:22
Original
819 people have browsed it

Copy code The code is as follows:

$a = array("Chinese"," Yazhou people","Longwangye","Tibet Autonomous Region");

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

$c = array("one" => "Chinese","tow" =>"Asian","three" => "Dragon King","four" => "Tibet Autonomous Region");

var_dump($a);

echo "
";

var_dump($b);

echo "
";

var_dump($c);
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/313660.htmlTechArticleCopy the code as follows: ?php $a = array("Chinese","Asian"," "Dragon Prince", "Tibet Autonomous Region"); $b[0] = "Apple"; $b[1] = "Apple"; $b[2] = "Apple"; $b[3] = "Apple"; $b[4] = "Apple...
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template