PHP design mode Series-Interpreter mode

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 parse the key elements of an entity, and to 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    classTemplate {Private $left= ' <!--{'; Private $right= '}--> ';  Public functionRun$str) {              return $this->init ($str,$this->left,$this-Right ); }                    /** Template driver-Default driver * @param string $str template file Data * @return string*/           Private functionInit$str,$left,$right) {              $pattern=Array(‘/‘.$left.‘ /‘, ‘/‘.$right.‘ /‘); $replacement=Array(‘‘, ‘‘); return Preg_replace($pattern,$replacement,$str); }      }      $str= "This is a template class, simple template class, titled:<!--{Hello world}-->"; $template=Newtemplate; Echo $template->run ($str);

Transferred from: http://blog.csdn.net/initphp/article/details/7689669

PHP design mode Series-Interpreter mode

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.