728x90 AdSpace

Latest News
Sunday, February 11, 2018

Tạo mảng liên hợp

Viết PHP script để tạo mảng liên hợp hiển thị tên các quốc gia và thủ đô.
Dưới đây là phần PHP code để giải bài tập tạo mảng liên hợp trong PHP:
<html>
   
   <head>
      <title>Tạo mảng liên hợp trong PHP</title>
   </head>
   <body>
   
       <?php
            //khai báo và tạo mảng liên hợp
            $mang_lien_hop = array( "Italy"=>"Rome", "Luxembourg"=>"Luxembourg",  
			"Belgium"=> "Brussels", "Denmark"=>"Copenhagen",  
			"Finland"=>"Helsinki", "France" => "Paris",  
			"Slovakia"=>"Bratislava", "Slovenia"=>"Ljubljana",  
			"Germany" => "Berlin", "Greece" => "Athens",  
			"Ireland"=>"Dublin", "Netherlands"=>"Amsterdam",
			"Austria" => "Vienna", "Poland"=>"Warsaw");  
			
			//sắp xếp mảng liên hợp
			asort($mang_lien_hop); 
			
			//lặp qua các phần tử mảng 
			foreach($mang_lien_hop as $country => $capital)  
			{  
			  echo "Thủ đô của $country là $capital"."<br>" ;  
			}  
       ?>
       
   </body>
</html>

Kết quả

Lưu PHP code trên trong một file có tên là test.php trong htdocs, sau đó mở trình duyệt và gõ địa chỉ http://localhost:8080/test.php sẽ cho kết quả:

  • Blogger Comments
  • Facebook Comments

0 comments:

Post a Comment

Item Reviewed: Tạo mảng liên hợp Rating: 5 Reviewed By: Genm