Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * class View
- */
- class View
- {
- /**
- * @var string $view
- */
- private $view;
- public function __construct($template, $data)
- {
- extract($data);
- ob_start();
- include($template)
- $this->view = ob_get_clean();
- }
- public public function __toString()
- {
- return $this->view;
- }
- }
- echo new View('views/index.php', ['saludo' => 'Hola mundo']);
Add Comment
Please, Sign In to add comment