发布于 2015-08-27 16:46:15 | 169 次阅读 | 评论: 0 | 来源: 网络整理
The ExpressionLanguage component provides an engine that can compile and evaluate expressions. An expression is a one-liner that returns a value (mostly, but not limited to, Booleans).
You can install the component in 2 different ways:
symfony/expression-language
on Packagist);The purpose of the component is to allow users to use expressions inside configuration for more complex logic. For some examples, the Symfony2 Framework uses expressions in security, for validation rules and in route matching.
Besides using the component in the framework itself, the ExpressionLanguage component is a perfect candidate for the foundation of a business rule engine. The idea is to let the webmaster of a website configure things in a dynamic way without using PHP and without introducing security problems:
# Get the special price if
user.getGroup() in ['good_customers', 'collaborator']
# Promote article to the homepage when
article.commentCount > 100 and article.category not in ["misc"]
# Send an alert when
product.stock < 15
Expressions can be seen as a very restricted PHP sandbox and are immune to external injections as you must explicitly declare which variables are available in an expression.
The ExpressionLanguage component can compile and evaluate expressions.
Expressions are one-liners that often return a Boolean, which can be used
by the code executing the expression in an if
statement. A simple example
of an expression is 1 + 2
. You can also use more complicated expressions,
such as someArray[3].someMethod('bar')
.
The component provides 2 ways to work with expressions:
The main class of the component is
ExpressionLanguage
:
use SymfonyComponentExpressionLanguageExpressionLanguage;
$language = new ExpressionLanguage();
echo $language->evaluate('1 + 2'); // displays 3
echo $language->compile('1 + 2'); // displays (1 + 2)
See The Expression Syntax to learn the syntax of the ExpressionLanguage component.
You can also pass variables into the expression, which can be of any valid PHP type (including objects):
use SymfonyComponentExpressionLanguageExpressionLanguage;
$language = new ExpressionLanguage();
class Apple
{
public $variety;
}
$apple = new Apple();
$apple->variety = 'Honeycrisp';
echo $language->evaluate(
'fruit.variety',
array(
'fruit' => $apple,
)
);
This will print “Honeycrisp”. For more information, see the The Expression Syntax entry, especially Working with Objects and Working with Arrays.
The component provides some different caching strategies, read more about them in Caching Expressions Using Parser Caches.