Вход Регистрация
Файл: symfony-2.7/src/Symfony/Component/ExpressionLanguage/Resources/bin/generate_operator_regex.php
Строк: 13
<?php

$operators 
= array('not''!''or''||''&&''and''|''^''&''==''===''!=''!==''<''>''>=''<=''not in''in''..''+''-''~''*''/''%''matches''**');
$operators array_combine($operatorsarray_map('strlen'$operators));
arsort($operators);

$regex = array();
foreach (
$operators as $operator => $length) {
    
// an operator that ends with a character must be followed by
    // a whitespace or a parenthesis
    
$regex[] = preg_quote($operator'/').(ctype_alpha($operator[$length 1]) ? '(?=[s(])' '');
}

echo 
'/'.implode('|'$regex).'/A';
Онлайн: 1
Реклама