Interface IConstants
Direct known implementers
MvcCore\IRequestIndirect known implementers
MvcCore\Requeststring |
SCHEME_HTTP
Non-secured HTTP scheme ( |
#
'http:'
|
string |
SCHEME_HTTPS
Secured HTTPS scheme ( |
#
'https:'
|
string |
SCHEME_FTP
Non-secured FTP scheme ( |
#
'ftp:'
|
string |
SCHEME_FTPS
Secured FTP scheme ( |
#
'ftps:'
|
string |
SCHEME_IRC
Non-secured IRC scheme ( |
#
'irc:'
|
string |
SCHEME_IRCS
Secured IRC scheme ( |
#
'ircs:'
|
string |
SCHEME_MAILTO
Email scheme ( |
#
'mailto:'
|
string |
SCHEME_FILE
File scheme ( |
#
'file:'
|
string |
SCHEME_DATA
Data scheme ( |
#
'data:'
|
string |
SCHEME_TEL
Telephone scheme ( |
#
'tel:'
|
string |
SCHEME_TELNET
Telnet scheme ( |
#
'telnet:'
|
string |
SCHEME_LDAP
LDAP scheme ( |
#
'ldap:'
|
string |
SCHEME_SSH
SSH scheme ( |
#
'ssh:'
|
string |
SCHEME_RTSP
RTSP scheme ( |
#
'rtsp:'
|
string |
SCHEME_RTP
|
#
'rtp:'
|
string |
METHOD_GET
Retrieves the information or entity that is identified by the URI of the request. |
#
'GET'
|
string |
METHOD_POST
Posts a new entity as an addition to a URI. |
#
'POST'
|
string |
METHOD_PUT
Replaces an entity that is identified by a URI. |
#
'PUT'
|
string |
METHOD_DELETE
Requests that a specified URI be deleted. |
#
'DELETE'
|
string |
METHOD_HEAD
Retrieves the message headers for the information or entity that is identified by the URI of the request. |
#
'HEAD'
|
string |
METHOD_OPTIONS
Represents a request for information about the communication options available on the request/response chain identified by the Request-URI. |
#
'OPTIONS'
|
string |
METHOD_PATCH
Requests that a set of changes described in the request entity be applied to the resource identified by the Request- URI. |
#
'PATCH'
|
string |
METHOD_TRACE
Requests that performs a message loop-back test along the path to the target resource, providing a useful debugging mechanism. |
#
'TRACE'
|
string |
PARAM_FILTER_ALPHABETS
Lower case and upper case alphabet characters only. |
#
'a-zA-Z'
|
string |
PARAM_FILTER_ALPHABETS_LOWER
Lower case alphabet characters only. |
#
'a-z'
|
string |
PARAM_FILTER_ALPHABETS_UPPER
Upper case alphabet characters only. |
#
'A-Z'
|
string |
PARAM_FILTER_ALPHABETS_DIGITS
Lower case and upper case alphabet characters and digits only. |
#
'a-zA-Z0-9'
|
string |
PARAM_FILTER_ALPHABETS_PUNCT
Lower case and upper case alphabet characters and punctuation characters: - . , SPACE ; ` " ' : ? ! |
#
'a-zA-Z\-\.\, ;`"\'\:\?\!'
|
string |
PARAM_FILTER_ALPHABETS_NUMERICS_PUNCT
Lower case and upper case alphabet characters, digits with dot, comma, minus and plus sign and punctuation characters: - . , SPACE ; ` " ' : ? ! |
#
'a-zA-Z0-9\+\-\.\, ;`"\'\:\?\!'
|
string |
PARAM_FILTER_ALPHABETS_NUMERICS_PUNCT_SPECIAL
Lower case and upper case alphabet characters, digits with dot, comma, minus and plus sign, punctuation characters: - . , SPACE ; ` " ' : ? ! and special characters: % _ / @ ~ # & $ [ ] ( ) { } | = * ^ |
#
'a-zA-Z0-9\+\-\.\, ;`"\'\:\?\!%_/@~\#\&\$\[\]\(\)\{\}\|\=\*\^'
|
string |
PARAM_FILTER_PUNCT
Punctuation characters only: - . , SPACE ; ` " ' : ? ! |
#
'\-\.\, ;`"\'\:\?\!'
|
string |
PARAM_FILTER_SPECIAL
Special characters only: % _ / @ ~ # & $ [ ] ( ) { } | = * ^ |
#
'%_/@~\#\&\$\[\]\(\)\{\}\|\=\*\^'
|
string |
PARAM_FILTER_DIGITS
Digits only from 0 to 9. |
#
'0-9'
|
string |
PARAM_FILTER_NUMERICS
Digits from 0 to 9 with dot, comma and minus and plus sign. |
#
'-\+0-9\.\,'
|