Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7936905
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T22:21:35+00:00 2026-06-03T22:21:35+00:00

I am working on a simple template engine, and I was wondering if it’s

  • 0

I am working on a simple template engine, and I was wondering if it’s feasible to include the template file multiple times, once for each time the template is rendered. It basically goes like this:

function rendering_function_in_rendering_class()
{
    include $path_to_templates . get_class($this) . 'template.php';
}

And then in the template file:

<h1>Hello, <?php echo $this->awesomename ?>!</h1>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T22:21:37+00:00Added an answer on June 3, 2026 at 10:21 pm

    This function does exactly what you need:

    <?php
    
    function embed($file, $vars) {
      ob_start();
      extract($vars, EXTR_SKIP);
      include($file);
      $content = ob_get_contents();
      ob_end_clean();
    
      return $content;
    }
    
    ?>
    

    It takes file path as a first parameter and key/value array of variables which will be extract into the scope such that your template will be able to use them directly in HTML like this:

    <h1><?php print $title; ?></h1>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on a very simple template engine that would allow others to
I have a simple HTML template that's used multiple times across the document. It's
The simple working query, list the number of licenses for each license type: Query:
Working on a simple TimeTracker App. You start a timer, wait a certain time,
I am trying to write a simple template engine to parse if statements. <{if
I am working on a simple textBox template, which is just two borders, one
Working on a simple example for template functions. The code compiles and works as
I have created a simple WordPress page template. I am working on live server.
Working on a simple C program I'm stuck with an if test: int line_number
im working on a simple C++ HTTP server as a school project and I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.