1 |
Add 1 to flags parm to escape these characters: # < >
@ ;. The characters will be escaped as %xx where xx is the
hexadecimal value for the character. |
2 |
Add 2 to flags parm to escape these characters: { } | \ ^ ~
[ ] ` $. The characters will be escaped as %xx where xx is the
hexadecimal value for the character. |
4 |
Add 4 to flags parm to escape the % character. The %
character will be escaped with %25. |
8 |
Add 8 to flags parm to escape the / character. The /
character will be escaped with %2f. |
16 |
Add 16 to flags parm to escape the ? character. The ?
character will be escaped with %3f. |
32 |
Add 32 to flags parm to escape the &
character. The & character will be escaped with %26. |
64 |
Add 64 to flags parm to escape the = character.
The = character will be escaped with %3d. |
128 |
Add 128 to flags parm to escape the : character.
The : character will be escaped with %3a. |
256 |
Add 256 to flags parm to escape the " and ' characters.
The " character is escaped with %22. The ' character is escaped with
%27. |
512 |
Add 512 to flags parm to escape the + character.
The + character will be escaped with %2b. |
1024 |
Add 1024 to flags parm to escape the space character.
The space character will be escaped with %20. |
2048 |
Add 2048 to flags parm to escape carriage return,
line feed, and tab characters. The carriage
return character will be escaped with %0d. The line feed character is
escaped with %0a. The tab character is escaped with %09. |
4096 |
Add 4096 to flags parm to escape every character. The
characters will be escaped as %xx where xx is the hexadecimal value
for the character. |
8192
|
Add 8192 to flags parm to cause the
escape process to ONLY escape characters after the first
? character.
|