PHP code example of jakubciszak / rule-engine
1. Go to this page and download the library: Download jakubciszak/rule-engine library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jakubciszak / rule-engine example snippets
use JakubCiszak\RuleEngine\Rule;
use JakubCiszak\RuleEngine\Operator;
$rule = (new Rule())
->variable('expectedAge', 22)
->variable('age')
->greaterThan()
->evaluate($context);
use JakubCiszak\RuleEngine\RuleContext;
$context = new RuleContext();
$result = $rule->evaluate($context);