Comos / tage

Tage, the PHP template engine. Developing...
GNU General Public License v3.0
4 stars 2 forks source link

expressions #12

Closed bigbigant closed 9 years ago

bigbigant commented 9 years ago

$foo $foo.bar $foo.bar() 字符串:'string', "string"

布尔值:true, false

空: null

数字

逻辑运算符:&&,||,!

数学运算符:+,-,,/,*(幂乘),//(整除)

字符串连接运算符: ~

range运算符: .. (如1..9 或 'a'..'z')

in 操作符: 如 $item in $items

数组:此处所说的数组是php中得通用array概念。(既是map也是数组)。如 [$a,$b,$c] 、 [3:$a,'mykey':$b,]

13leaf commented 9 years ago

common parser algorithm