File path: dist/twist/Core/Utilities/Validate.utility.php
Namespace: Twist\Core\Utilities
Extends: Base
regx
— Validate some data using an Regular Expression
Name | Description |
---|---|
$mxdData | n/a |
$strRegX | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$mxdData = 'foo-123';
$strRegX = 'foo';
//Call the function regx with the example vars
Twist::Validate() -> regx($mxdData, $strRegX);