<?php
$settings = array
  (
  array("Volvo",22,18),
  array("BMW",15,13),
  array("Saab",5,2),
  array("Land Rover",17,15)
  );
 
class page{
	public function __construct(){
		include("includes/header.php");
	}
	public function __destruct(){
		include("includes/footer.php");
	}
}
?>
header.php ve footer.php içerisinde $settings yayınlamak istiyorum nasıl yapacağım?