
<?php # index.php class Index { public function __construct() { $var = 'It works!'; include('templates.class.php'); $theme = new Theme; $theme -> load(); } } new Index; ?>
<?php # templates.class.php class Theme { public function load() { return include('szablon.php'); } } ?>
<?php # szablon.php ?>