1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<?php
/**
* THttpUtility class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package System.Web
*/
/**
* THttpUtility class
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @package System.Web
* @since 3.0
*/
class THttpUtility
{
private static $_encodeTable=array('<'=>'<','>'=>'>','"'=>'"');
private static $_decodeTable=array('<'=>'<','>'=>'>','"'=>'"');
private static $_stripTable=array('<'=>'','>'=>'','"'=>'');
/**
* HTML-encodes a string.
* This method translates the following characters to their corresponding
* HTML entities: <, >, "
* Note, unlike {@link htmlspecialchars}, & is not translated.
* @param string string to be encoded
* @return string encoded string
*/
public static function htmlEncode($s)
{
return strtr($s,self::$_encodeTable);
}
/**
* HTML-decodes a string.
* It is the inverse of {@link htmlEncode}.
* @param string string to be decoded
* @return string decoded string
*/
public static function htmlDecode($s)
{
return strtr($s,self::$_decodeTable);
}
/**
* This method strips the following characters from a string:
* HTML entities: <, >, "
* @param string string to be encoded
* @return string encoded string
*/
public static function htmlStrip($s)
{
return strtr($s,self::$_stripTable);
}
}
|