Home > php教程 > php手册 > PHP简易渲染模板

PHP简易渲染模板

WBOY
Release: 2016-06-06 20:12:39
Original
1075 people have browsed it

渲染模板 function render_template($template_file, $variables) { extract($variables, EXTR_SKIP); // Extract the variables to a local namespace ob_start(); // Start output buffering include "./$template_file"; // Include the template file $c

渲染模板

function render_template($template_file, $variables) {
    extract($variables, EXTR_SKIP);  // Extract the variables to a local namespace
    ob_start();                      // Start output buffering
    include "./$template_file";      // Include the template file
    $contents = ob_get_contents();   // Get the contents of the buffer
    ob_end_clean();                  // End buffering and discard
    return $contents;                // Return the contents
}
Copy after login

usage

$render_message = array(
    'token' => $token,
    'me' => $user,
    'game_key' => $game_key,
    'game_link' => $game_link,
    'initial_message' => $initial_message,
    );
$template_file = 'index.tpl';
$ret = render_template($template_file, $render_message);
echo($ret);
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template