Escape.php
Code (php)
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?php
/**
* Gestione_Escape voor het filteren van de opgegeven tekst. Het voordeel boven de htmlspecialchars, htmlenities
* van PHP is dat je bepaalde tags kan toevoegen die worden genegeerd bij het filter van de tekst.
*
* @author Niels Kieviet <[email protected]>
* @version $Revision v1.00$
* @copyright Copyright (c) 2011, Niels Kieviet
*/
class Gestione_Escape {
/**
* Toegestane tags
*
* @access Protected
* @var Array
*/
protected $allowedTags = array();
/**
* Methode voor het parsen van de opgegeven tekst
*
* @param String $text
* @param Array $flags (Opt)
* @access Public
* @return String
*/
public static function parse($text, $tags = null) {
if (is_array($tags) && count($tags) > 0) {
self::setAllowedTags($tags);
$tags = implode('', $this->allowedTags);
}
// Speciale characters omzetten
$search = array('/‘/u', '/’/u', '/“/u', '/”/u', '/—/u');
$replace = array('\'', '\'', '"', '"', '-');
$text = preg_replace($search, $replace, $text);
// html entities omzetten naar UTF-8
$text = html_entity_decode($text, ENT_QUOTES, 'UTF-8');
// Alle /* .. */ style commentaren omzetten naar normale HTML commentaar
if (mb_stripos($text, '/*') !== false) {
$text = mb_eregi_replace('#/\*.*?\*/#s', '', $text, 'm');
}
// Witruimte voor wiskundige berekeningen
$text = preg_replace(array('/<([0-9]+)/'), array('< $1'), $text);
$text = strip_tags($text, $tags);
// Meerdere spaties achterelkaar terug zetten naar één
$text = preg_replace(array('/^\s\s+/', '/\s\s+$/', '/\s\s+/u'), array('', '', ' '), $text);
// Verwijder inline css en css tags
$search = array('#<(strong|b)[^>]*>(.*?)</(strong|b)>#isu', '#<(em|i)[^>]*>(.*?)</(em|i)>#isu', '#<u[^>]*>(.*?)</u>#isu');
$replace = array('<b>$2</b>', '<i>$2</i>', '<u>$1</u>');
$text = preg_replace($search, $replace, $text);
// Sommige MS Style definities geven rare tekens mee waarneer een tekst wordt gekopieerd
$numMatches = preg_match_all('/\<!--/u', $text, $matches);
if ($numMatches) {
$text = preg_replace('/\<!--(.)*--\>/isu', '', $text);
}
// Retourneer de gefilterde tekst
return $text;
}
/**
* Methode voor het parsen van een array
*
* @param Array $text
* @access Public
* @return Array
*/
public static function parseFromArray(array $text = array(), $tags = null) {
if (is_array($tags) && count($tags) > 0) {
$this->setAllowedTags($tags);
$tags = implode('', $this->allowedTags);
}
$rText = array();
if (is_array($text) && count($text) > 0) {
foreach ($text as $columnName => $value) {
$pText = self::parse($value, $tags);
$rText[$columnName] = $pText;
}
}
return $rText;
}
/**
* Methode voor het zetten van toegestane tags
*
* @param Array $tags
* @access Public
* @return Void
*/
public function setAllowedTags($tags) {
if (is_array($tags) && count($tags) > 0) {
foreach ($tags as $tag) {
if (!in_array($tag, $this->allowedTags)) {
$this->allowedTags[] = $tag;
}
}
}
}
/**
* Methode voor het verwijderen van alle tags die zijn toegestaan
*
* @access Public
* @return Void
*/
public function clearAllAllowedTags() {
$this->allowedTags = array();
}
/**
* Methode voor het verwijderen van toegestane tags
*
* @param Array $tag
* @access Public
* @return Void
*/
public function clearAllowedTags($tags) {
if (is_array($tags) && count($tags) > 0) {
foreach ($tags as $tag) {
if (in_array($tag, $this->allowedTags)) {
unset($this->allowedTags[$tag]);
}
}
}
}
/**
* Methode voor het verwijderen van een toegestane tag
*
* @param String $tag
* @access Public
* @return Void
*/
public function clearAllowedTag($tag) {
if (is_string($tag) && !is_null($tag)) {
unset($this->allowedTags[$tag]);
}
}
}
/**
* Gestione_Escape voor het filteren van de opgegeven tekst. Het voordeel boven de htmlspecialchars, htmlenities
* van PHP is dat je bepaalde tags kan toevoegen die worden genegeerd bij het filter van de tekst.
*
* @author Niels Kieviet <[email protected]>
* @version $Revision v1.00$
* @copyright Copyright (c) 2011, Niels Kieviet
*/
class Gestione_Escape {
/**
* Toegestane tags
*
* @access Protected
* @var Array
*/
protected $allowedTags = array();
/**
* Methode voor het parsen van de opgegeven tekst
*
* @param String $text
* @param Array $flags (Opt)
* @access Public
* @return String
*/
public static function parse($text, $tags = null) {
if (is_array($tags) && count($tags) > 0) {
self::setAllowedTags($tags);
$tags = implode('', $this->allowedTags);
}
// Speciale characters omzetten
$search = array('/‘/u', '/’/u', '/“/u', '/”/u', '/—/u');
$replace = array('\'', '\'', '"', '"', '-');
$text = preg_replace($search, $replace, $text);
// html entities omzetten naar UTF-8
$text = html_entity_decode($text, ENT_QUOTES, 'UTF-8');
// Alle /* .. */ style commentaren omzetten naar normale HTML commentaar
if (mb_stripos($text, '/*') !== false) {
$text = mb_eregi_replace('#/\*.*?\*/#s', '', $text, 'm');
}
// Witruimte voor wiskundige berekeningen
$text = preg_replace(array('/<([0-9]+)/'), array('< $1'), $text);
$text = strip_tags($text, $tags);
// Meerdere spaties achterelkaar terug zetten naar één
$text = preg_replace(array('/^\s\s+/', '/\s\s+$/', '/\s\s+/u'), array('', '', ' '), $text);
// Verwijder inline css en css tags
$search = array('#<(strong|b)[^>]*>(.*?)</(strong|b)>#isu', '#<(em|i)[^>]*>(.*?)</(em|i)>#isu', '#<u[^>]*>(.*?)</u>#isu');
$replace = array('<b>$2</b>', '<i>$2</i>', '<u>$1</u>');
$text = preg_replace($search, $replace, $text);
// Sommige MS Style definities geven rare tekens mee waarneer een tekst wordt gekopieerd
$numMatches = preg_match_all('/\<!--/u', $text, $matches);
if ($numMatches) {
$text = preg_replace('/\<!--(.)*--\>/isu', '', $text);
}
// Retourneer de gefilterde tekst
return $text;
}
/**
* Methode voor het parsen van een array
*
* @param Array $text
* @access Public
* @return Array
*/
public static function parseFromArray(array $text = array(), $tags = null) {
if (is_array($tags) && count($tags) > 0) {
$this->setAllowedTags($tags);
$tags = implode('', $this->allowedTags);
}
$rText = array();
if (is_array($text) && count($text) > 0) {
foreach ($text as $columnName => $value) {
$pText = self::parse($value, $tags);
$rText[$columnName] = $pText;
}
}
return $rText;
}
/**
* Methode voor het zetten van toegestane tags
*
* @param Array $tags
* @access Public
* @return Void
*/
public function setAllowedTags($tags) {
if (is_array($tags) && count($tags) > 0) {
foreach ($tags as $tag) {
if (!in_array($tag, $this->allowedTags)) {
$this->allowedTags[] = $tag;
}
}
}
}
/**
* Methode voor het verwijderen van alle tags die zijn toegestaan
*
* @access Public
* @return Void
*/
public function clearAllAllowedTags() {
$this->allowedTags = array();
}
/**
* Methode voor het verwijderen van toegestane tags
*
* @param Array $tag
* @access Public
* @return Void
*/
public function clearAllowedTags($tags) {
if (is_array($tags) && count($tags) > 0) {
foreach ($tags as $tag) {
if (in_array($tag, $this->allowedTags)) {
unset($this->allowedTags[$tag]);
}
}
}
}
/**
* Methode voor het verwijderen van een toegestane tag
*
* @param String $tag
* @access Public
* @return Void
*/
public function clearAllowedTag($tag) {
if (is_string($tag) && !is_null($tag)) {
unset($this->allowedTags[$tag]);
}
}
}