国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

PHP ??? ??

PHP ??? ??


2?? ??? ??? ??? ????? ?? ? ????.

??? ??? ? ?? ??? ???? ?? ???? ???. ???? ?? ??? ?????. ??? ??? ? ??? ? ?? ??? ? ?? ????

??? 1?? ??? ?? ??? ???? 2?? ??? ???.

? ??? ?? ?? ??? ? ?? ??, ?? ??? ?? ??? ? ?? ????. ??? ???? 2?? ?? 3?? ??? ??? ? ????:

Instance

<?php
 // 二維數(shù)組:
 $cars = array
 (
     array("Volvo",100,96),
     array("BMW",60,59),
     array("Toyota",110,100)
 );
 ?>


PHP - ??? ??

??? ??? ?? ??? ??? ???? ?????.

??? ???? ?? ??? ? ??? ??? ? ?? ?? ?? ??? ? ??? ??? ? ?? ????.

?

? ???? ???? ??? ID ?? ???? ??? ??? ????.

?

<?php 
 $sites = array 
 ( 
     "php"=>array 
     ( 
         "PHP中文網(wǎng)"
         "http://www.miracleart.cn"
     ), 
     "google"=>array 
     ( 
         "Google 搜索", 
         "http://www.google.com" 
     ), 
     "taobao"=>array 
     ( 
         "淘寶", 
         "http://www.taobao.com" 
     ) 
 ); 
 print("<pre>"); // 格式化輸出數(shù)組 
 print_r($sites); 
 print("</pre>"); 
 ?>



? 2

?? ??? ?? ??? ?????.

echo $sites['php'][0] '??. is:' . PHP ?? ? ??.


???? ??
||
<?php $sites = array ( "php"=>array ( "PHP中文網(wǎng)" "http://www.miracleart.cn" ), "google"=>array ( "Google 搜索", "http://www.google.com" ), "taobao"=>array ( "淘寶", "http://www.taobao.com" ) ); print("<pre>"); // 格式化輸出數(shù)組 print_r($sites); print("</pre>"); ?>