PHP design pattern series-Interpreter pattern _ PHP Tutorial

Source: Internet
Author: User
PHP design pattern series-Interpreter pattern. Interpreter mode: interpreter mode analyzes key elements of an object and provides explanations or actions for each element. The interpreter mode is very common, such as the template interpreter mode of PHP.
The interpreter mode analyzes key elements of an object and provides explanations or actions for each element. The interpreter mode is very common. for example, the PHP template engine is a very common interpreter mode.
Code:
[Php]
// The interpreter mode is used to analyze the key elements of an object and provide explanations or actions for each element.
// The interpreter mode is very common. for example, 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 simple template class with the title: ";
$ Template = new template;
Echo $ template-> run ($ str );
Author: initphp

The explain interpreter mode analyzes key elements of an object and provides explanations or actions for each element. Interpreter mode is very common, such as PHP template...

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.