Home > Backend Development > PHP Tutorial > PHP design pattern Interpreter (interpreter mode)_PHP tutorial

PHP design pattern Interpreter (interpreter mode)_PHP tutorial

WBOY
Release: 2016-07-21 15:27:14
Original
717 people have browsed it

复制代码 代码如下:

/**
* Interpreter Example
*
* @create_date: 2010-01-04
*/
class Expression
{
function interpreter($str)
{
return $str;
}
}
class ExpressionNum extends Expression
{
function interpreter($str)
{
switch($str)
{
case "0": return "零";
case "1": return "一";
case "2": return "二";
case "3": return "三";
case "4": return "四";
case "5": return "五";
case "6": return "六";
case "7": return "七";
case "8": return "八";
case "9": return "九";
}
}
}
class ExpressionCharater extends Expression
{
function interpreter($str)
{
return strtoupper($str);
}
}
class Interpreter
{
function execute($string)
{
$expression = null;
for($i = 0;$i$temp = $string[$i];
switch(true)
{
case is_numeric($temp): $expression = new ExpressionNum(); break;
default: $expression = new ExpressionCharater();
}
echo $expression->interpreter($temp);
}
}
}
$obj = new Interpreter();
$obj->execute("12345abc");
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/323795.htmlTechArticle复制代码 代码如下: ?php /*** Interpreter Example * * @create_date: 2010-01-04*/ class Expression { function interpreter($str) { return $str; } } class ExpressionNum extends...
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template