Viết một class để sắp xếp một mảng số nguyên với sự giúp đỡ của hàm sort().

PHP script

Dưới đây là phần PHP code để giải bài tập PHP trên:

<html>
   
   <head>
      <title>Bài tập Class (Lớp) trong PHP</title>
   </head>
   <body>
   
       <?php
        class sap_xep_mang  
		{  
			protected $_asort;  
			  
			public function __construct(array $asort)  
			 {  
				$this->_asort = $asort;  
			 }  
			public function ham_sap_xep()  
			 {  
				$sorted = $this->_asort;  
				sort($sorted);  
				return $sorted;  
			  }  
		}  
		$sortarray = new sap_xep_mang(array(11, -2, 4, 35, 0, 8, -9));  
		print_r($sortarray->ham_sap_xep())."<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ả:

Bài tập Class (Lớp) trong PHP - Phần 4 | Bài tập PHP có giải

Các bài tập Class (Lớp) trong PHP khác có trên s2sontech:




Bình luận (0)

Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Learning English Everyday