Key code for generating static pages for the Smarty template engine

Source: Internet
Author: User
Tags smarty template
This article describes the following, Smarty template engine, generate static pages of the key code, with the need for friends, refer to the next bar.

In Smarty, there is a method fetch () that gets the template page content, and it declares the prototype as:

     
     

Code Description: The first parameter is the template name, the second parameter is the cached ID, the third parameter is the compilation ID, and the fourth parameter is whether to display the template content.

This method is required to generate a static page.

     
     Fetch (' template name. TPL ', NULL, NULL, FALSE);      Writes the content to a static file     $fp =fopen (' news.html ', ' W ');     Fwrite ($fp, $content);     Fclose ($FP); by bbs.it-home.org?>

In this way, a static page news.html is generated.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.