This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class DataSetValue | |
{ | |
const ALPHA_LOWER = 'abcdefghijklmnopqrstuvwxyz'; | |
const ALPHA_UPPER = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; | |
const ALPHA_NUMERIC = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'; | |
const SYMBOLS = '!@£$%^&*()-='; | |
const SECURITY_XSS = "'';!--\"<XSS>=&{()}"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class DataSetValue | |
{ | |
const ALPHA_LOWER = 'abcdefghijklmnopqrstuvwxyz'; | |
const ALPHA_NUMERIC = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'; | |
const ALPHA_SYMBOLS = '!@£$%^&*()_+'; | |
const EMAIL_VALID = '[email protected]'; | |