matches() public static method

Check that a value matches a regular expression.
public static matches ( string $regExp ) : Matches
$regExp string The regular expression.
return Webmozart\Expression\Constraint\Matches The created expression.
コード例 #1
0
ファイル: OrX.php プロジェクト: webmozart/expression
 public function orMatches($regExp)
 {
     return $this->orX(Expr::matches($regExp));
 }
コード例 #2
0
ファイル: AndX.php プロジェクト: webmozart/expression
 public function andMatches($regExp)
 {
     return $this->andX(Expr::matches($regExp));
 }