PHP ?? ?? ???? ??? ??
1. PHP 2?? ??
?? ?????? ??? ??? ?? 1?? ?????
?? ???? 2???? ???? ??? ??? ?????.
? ??? ?? ?? ??? ? ? ??, ?? ??? ?? ??? ? ? ????. ? ???? 2?? g ??? ?? ? ????.
??? ?? 2?? ??? ????.
?: ??? ??? ????
<?php // 二維數(shù)組: $cars = array ( array("Volvo",100,96), array("BMW",60,59), array("Toyota",110,100) ); ?>
2 , PHP ??? ??
??? ??? ?? ??? ??? ???? ?????.
??? ???? ?? ??? ? ??? ??? ? ?? ??, ?? ??? ? ??? ??? ? ?? ????.
?: ID ?? ???? ???? ??? ??? ??????. ??? ??? ????.
<?php $sites = array ( "php"=>array ( "php中文網(wǎng)", "http://www.miracleart.cn" ), "google"=>array ( "baidu 搜索", "http://www.baidu.com" ), "taobao"=>array ( "淘寶", "http://www.taobao.com" ) ); print("<pre>"); // 格式化輸出數(shù)組 print_r($sites); //將數(shù)組打印出來 print("</pre>"); ?>
?? ??? ???? ????
???? ?? ??? ??? ???:
??? ??? ????
<?php $sites = array ( "php"=>array ( "php中文網(wǎng)", "http://www.miracleart.cn" ), "baidu"=>array ( "baidu 搜索", "http://www.baidu.com" ), "taobao"=>array ( "淘寶", "http://www.taobao.com" ) ); echo '歡迎訪問'.$sites['php'][0].'我們的網(wǎng)址是'.$sites['php'][1] ?>
?? ??? ???? ?????
?? : ??? ??? ??? ? ??? ???? ??? ?????. ??? ?? ")" ??? ????? ???.