Guest User

Untitled

a guest
Feb 16th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. function renderTemplate($filePath, $variables = []) {
  2. if (!is_array($variables)) {
  3. throw new Exception('Variables var must be of type array, ' . gettype($variables) . ' given');
  4. }
  5.  
  6. extract($variables);
  7.  
  8. ob_start();
  9.  
  10. require $filePath;
  11. return ob_get_clean();
  12. }
Add Comment
Please, Sign In to add comment