1: <?php
2: /**
3: * Wei Framework
4: *
5: * @copyright Copyright (c) 2008-2015 Twin Huang
6: * @license http://opensource.org/licenses/mit-license.php MIT License
7: */
8:
9: namespace Wei\Validator;
10:
11: /**
12: * Check if the input is valid UUID(v4)
13: *
14: * @author Twin Huang <twinhuang@qq.com>
15: */
16: class Uuid extends Regex
17: {
18: protected $patternMessage = '%name% must be valid UUID';
19:
20: protected $negativeMessage = '%name% must not be valid UUID';
21:
22: protected $pattern = '/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/';
23: }
24: