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

Several methods of defining arrays in PHP_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 16:12:22759browse

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...
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