Hướng dẫn tạo class td_module :)))

Bước 1: Trong functions bạn sử dụng code
<?php
abstract class td_module {
    var $post_status;
    var $post_title;
	function __construct($variable1) {
        $this->post_status = $variable1->post_status;
        $this->post_title = $variable1->post_title;
	}
}
?>
Bước 2: Trong file index.php bạn sử dụng code
<?php
class td_module_mx5 extends td_module {
    function __construct($variable2) {
        parent::__construct($variable2);
    }
};
?>
Bước 3: Trong file index.php bạn sử dụng code
<?php
    $pia = new td_module_mx5($post);
	echo '<pre>';
			var_dump($pia);
	echo '</pre>';
?>

Last updated