PHP design mode Series-Interpreter mode _php tutorial

Source: Internet
Author: User
Tags php template
Interpreter mode
The interpreter pattern is used to analyze the key elements of an entity and to provide its own interpretation or corresponding action for each element. The interpreter mode is very common, such as the PHP template engine is a very common type of interpreter module.
Code:
[PHP]
The interpreter pattern is used to analyze key elements of an entity and provide its own interpretation or corresponding action for each element
Interpreter mode is very common, such as the PHP template engine is a very common interpreter mode
Class Template {

Private $left = ' ';

Public function Run ($STR) {
return $this->init ($str, $this->left, $this->right);
}

/** www.2cto.com
* Template driver-default driver
* @param string $str template file data
* @return String
*/
Private Function init ($str, $left, $right) {
$pattern = Array ('/'. $left. ' /', '/'. $right. ' /');
$replacement = Array (', ');
Return Preg_replace ($pattern, $replacement, $STR);
}
}
$str = "This is a template class, a simple template class, titled: ";
$template = new Template;
echo $template->run ($STR);
Author: initphp

http://www.bkjia.com/PHPjc/478148.html www.bkjia.com true http://www.bkjia.com/PHPjc/478148.html techarticle The interpreter mode interpreter pattern is used to analyze key elements of an entity and provide its own interpretations or corresponding actions for each element. Interpreter mode is very common, such as PHP templates ...

  • Related Article

    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.