1# PhpLabel
2
3- `v::phpLabel()`
4
5Validates if a value is considered a valid PHP Label,
6so that it can be used as a *variable*, *function* or *class* name, for example.
7
8Reference:
9http://php.net/manual/en/language.variables.basics.php
10
11```php
12v::phpLabel()->validate('person'); //true
13v::phpLabel()->validate('foo'); //true
14v::phpLabel()->validate('4ccess'); //false
15```
16
17***
18See also:
19
20  * [Regex](Regex.md)
21  * [ResourceType](ResourceType.md)
22  * [Slug](Slug.md)
23  * [Charset](Charset.md)
24