PHP Класс PHPUnit_Framework_Constraint_PCREMatch, qcodo

Checks a given value using the Perl Compatible Regular Expression extension in PHP. The pattern is matched by executing preg_match(). The pattern string passed in the constructor.
Автор: Sebastian Bergmann ([email protected])
Наследование: extends PHPUnit_Framework_Constraint
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$pattern string

Открытые методы

Метод Описание
__construct ( string $pattern )
evaluate ( mixed $other ) : boolean Evaluates the constraint for parameter $other. Returns TRUE if the constraint is met, FALSE otherwise.
toString ( ) : string Returns a string representation of the constraint.

Описание методов

__construct() публичный Метод

public __construct ( string $pattern )
$pattern string

evaluate() публичный Метод

Evaluates the constraint for parameter $other. Returns TRUE if the constraint is met, FALSE otherwise.
public evaluate ( mixed $other ) : boolean
$other mixed Value or object to evaluate.
Результат boolean

toString() публичный Метод

Returns a string representation of the constraint.
public toString ( ) : string
Результат string

Описание свойств

$pattern защищенное свойство

protected string $pattern
Результат string