root/tags/2.1/wp-includes/formatting.php

Revision 4710, 36.1 kB (checked in by ryan, 2 years ago)

sanitize_file_name(). fixes #3382 #3554

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 <?php
2
3 function wptexturize($text) {
4     global $wp_cockneyreplace;
5     $next = true;
6     $output = '';
7     $curl = '';
8     $textarr = preg_split('/(<.*>)/Us', $text, -1, PREG_SPLIT_DELIM_CAPTURE);
9     $stop = count($textarr);
10
11     // if a plugin has provided an autocorrect array, use it
12     if ( isset($wp_cockneyreplace) ) {
13         $cockney = array_keys($wp_cockneyreplace);
14         $cockney_replace = array_values($wp_cockneyreplace);
15     } else {
16         $cockney = array("'tain't","'twere","'twas","'tis","'twill","'til","'bout","'nuff","'round","'cause");
17         $cockneyreplace = array("&#8217;tain&#8217;t","&#8217;twere","&#8217;twas","&#8217;tis","&#8217;twill","&#8217;til","&#8217;bout","&#8217;nuff","&#8217;round","&#8217;cause");
18     }
19
20     $static_characters = array_merge(array('---', ' -- ', '--', 'xn&#8211;', '...', '``', '\'s', '\'\'', ' (tm)'), $cockney);
21     $static_replacements = array_merge(array('&#8212;', ' &#8212; ', '&#8211;', 'xn--', '&#8230;', '&#8220;', '&#8217;s', '&#8221;', ' &#8482;'), $cockneyreplace);
22
23     $dynamic_characters = array('/\'(\d\d(?:&#8217;|\')?s)/', '/(\s|\A|")\'/', '/(\d+)"/', '/(\d+)\'/', '/(\S)\'([^\'\s])/', '/(\s|\A)"(?!\s)/', '/"(\s|\S|\Z)/', '/\'([\s.]|\Z)/', '/(\d+)x(\d+)/');
24     $dynamic_replacements = array('&#8217;$1','$1&#8216;', '$1&#8243;', '$1&#8242;', '$1&#8217;$2', '$1&#8220;$2', '&#8221;$1', '&#8217;$1', '$1&#215;$2');   
25
26     for ( $i = 0; $i < $stop; $i++ ) {
27          $curl = $textarr[$i];
28
29         if (isset($curl{0}) && '<' != $curl{0} && $next) { // If it's not a tag
30             // static strings
31             $curl = str_replace($static_characters, $static_replacements, $curl);
32
33             // regular expressions
34             $curl = preg_replace($dynamic_characters, $dynamic_replacements, $curl);
35         } elseif ( strstr($curl, '<code') || strstr($curl, '<pre') || strstr($curl, '<kbd') || strstr($curl, '<style') || strstr($curl, '<script') ) {
36             $next = false;
37         } else {
38             $next = true;
39         }
40
41         $curl = preg_replace('/&([^#])(?![a-zA-Z1-4]{1,8};)/', '&#038;$1', $curl);
42         $output .= $curl;
43     }
44
45       return $output;
46 }
47
48 function clean_pre($text) {
49     $text = str_replace('<br />', '', $text);
50     $text = str_replace('<p>', "\n", $text);
51     $text = str_replace('</p>', '', $text);
52     return $text;
53 }
54
55 function wpautop($pee, $br = 1) {
56     $pee = $pee . "\n"; // just to make things a little easier, pad the end
57     $pee = preg_replace('|<br />\s*<br />|', "\n\n", $pee);
58     // Space things out a little
59     $allblocks = '(?:table|thead|tfoot|caption|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form|blockquote|address|math|style|script|object|input|param|p|h[1-6])';
60     $pee = preg_replace('!(<' . $allblocks . '[^>]*>)!', "\n$1", $pee);
61     $pee = preg_replace('!(</' . $allblocks . '>)!', "$1\n\n", $pee);
62     $pee = str_replace(array("\r\n", "\r"), "\n", $pee); // cross-platform newlines
63     $pee = preg_replace("/\n\n+/", "\n\n", $pee); // take care of duplicates
64     $pee = preg_replace('/\n?(.+?)(?:\n\s*\n|\z)/s', "<p>$1</p>\n", $pee); // make paragraphs, including one at the end
65     $pee = preg_replace('|<p>\s*?</p>|', '', $pee); // under certain strange conditions it could create a P of entirely whitespace
66     $pee = preg_replace( '|<p>(<div[^>]*>\s*)|', "$1<p>", $pee );
67     $pee = preg_replace('!<p>([^<]+)\s*?(</(?:div|address|form)[^>]*>)!', "<p>$1</p>$2", $pee);
68     $pee = preg_replace( '|<p>|', "$1<p>", $pee );
69     $pee = preg_replace('!<p>\s*(</?' . $allblocks . '[^>]*>)\s*</p>!', "$1", $pee); // don't pee all over a tag
70     $pee = preg_replace("|<p>(<li.+?)</p>|", "$1", $pee); // problem with nested lists
71     $pee = preg_replace('|<p><blockquote([^>]*)>|i', "<blockquote$1><p>", $pee);
72     $pee = str_replace('</blockquote></p>', '</p></blockquote>', $pee);
73     $pee = preg_replace('!<p>\s*(</?' . $allblocks . '[^>]*>)!', "$1", $pee);
74     $pee = preg_replace('!(</?' . $allblocks . '[^>]*>)\s*</p>!', "$1", $pee);
75     if ($br) {
76         $pee = preg_replace('/<(script|style).*?<\/\\1>/se', 'str_replace("\n", "<WPPreserveNewline />", "\\0")', $pee);
77         $pee = preg_replace('|(?<!<br />)\s*\n|', "<br />\n", $pee); // optionally make line breaks
78         $pee = str_replace('<WPPreserveNewline />', "\n", $pee);
79     }
80     $pee = preg_replace('!(</?' . $allblocks . '[^>]*>)\s*<br />!', "$1", $pee);
81     $pee = preg_replace('!<br />(\s*</?(?:p|li|div|dl|dd|dt|th|pre|td|ul|ol)[^>]*>)!', '$1', $pee);
82     if ( strstr( $pee, '<pre' ) )
83         $pee = preg_replace('!(<pre.*?>)(.*?)</pre>!ise', " stripslashes('$1') .  stripslashes(clean_pre('$2'))  . '</pre>' ", $pee);
84     $pee = preg_replace( "|\n</p>$|", '</p>', $pee );
85 /**/
86     return $pee;
87 }
88
89
90 function seems_utf8($Str) { # by bmorel at ssi dot fr
91     for ($i=0; $i<strlen($Str); $i++) {
92         if (ord($Str[$i]) < 0x80) continue; # 0bbbbbbb
93         elseif ((ord($Str[$i]) & 0xE0) == 0xC0) $n=1; # 110bbbbb
94         elseif ((ord($Str[$i]) & 0xF0) == 0xE0) $n=2; # 1110bbbb
95         elseif ((ord($Str[$i]) & 0xF8) == 0xF0) $n=3; # 11110bbb
96         elseif ((ord($Str[$i]) & 0xFC) == 0xF8) $n=4; # 111110bb
97         elseif ((ord($Str[$i]) & 0xFE) == 0xFC) $n=5; # 1111110b
98         else return false; # Does not match any model
99         for ($j=0; $j<$n; $j++) { # n bytes matching 10bbbbbb follow ?
100             if ((++$i == strlen($Str)) || ((ord($Str[$i]) & 0xC0) != 0x80))
101             return false;
102         }
103     }
104     return true;
105 }
106
107 function wp_specialchars( $text, $quotes = 0 ) {
108     // Like htmlspecialchars except don't double-encode HTML entities
109     $text = str_replace('&&', '&#038;&', $text);
110     $text = str_replace('&&', '&#038;&', $text);
111     $text = preg_replace('/&(?:$|([^#])(?![a-z1-4]{1,8};))/', '&#038;$1', $text);
112     $text = str_replace('<', '&lt;', $text);
113     $text = str_replace('>', '&gt;', $text);
114     if ( 'double' === $quotes ) {
115         $text = str_replace('"', '&quot;', $text);
116     } elseif ( 'single' === $quotes ) {
117         $text = str_replace("'", '&#039;', $text);
118     } elseif ( $quotes ) {
119         $text = str_replace('"', '&quot;', $text);
120         $text = str_replace("'", '&#039;', $text);
121     }
122     return $text;
123 }
124
125 function utf8_uri_encode( $utf8_string, $length = 0 ) {
126     $unicode = '';
127     $values = array();
128     $num_octets = 1;
129
130     for ($i = 0; $i < strlen( $utf8_string ); $i++ ) {
131
132         $value = ord( $utf8_string[ $i ] );
133
134         if ( $value < 128 ) {
135             if ( $length && ( strlen($unicode) + 1 > $length ) )
136                 break;
137             $unicode .= chr($value);
138         } else {
139             if ( count( $values ) == 0 ) $num_octets = ( $value < 224 ) ? 2 : 3;
140
141             $values[] = $value;
142
143             if ( $length && ( (strlen($unicode) + ($num_octets * 3)) > $length ) )
144                 break;
145             if ( count( $values ) == $num_octets ) {
146                 if ($num_octets == 3) {
147                     $unicode .= '%' . dechex($values[0]) . '%' . dechex($values[1]) . '%' . dechex($values[2]);
148                 } else {
149                     $unicode .= '%' . dechex($values[0]) . '%' . dechex($values[1]);
150                 }
151
152                 $values = array();
153                 $num_octets = 1;
154             }
155         }
156     }
157
158     return $unicode;
159 }
160
161 function remove_accents($string) {
162     if ( !preg_match('/[\x80-\xff]/', $string) )
163         return $string;
164
165     if (seems_utf8($string)) {
166         $chars = array(
167         // Decompositions for Latin-1 Supplement
168         chr(195).chr(128) => 'A', chr(195).chr(129) => 'A',
169         chr(195).chr(130) => 'A', chr(195).chr(131) => 'A',
170         chr(195).chr(132) => 'A', chr(195).chr(133) => 'A',
171         chr(195).chr(135) => 'C', chr(195).chr(136) => 'E',
172         chr(195).chr(137) => 'E', chr(195).chr(138) => 'E',
173         chr(195).chr(139) => 'E', chr(195).chr(140) => 'I',
174         chr(195).chr(141) => 'I', chr(195).chr(142) => 'I',
175         chr(195).chr(143) => 'I', chr(195).chr(145) => 'N',
176         chr(195).chr(146) => 'O', chr(195).chr(147) => 'O',
177         chr(195).chr(148) => 'O', chr(195).chr(149) => 'O',
178         chr(195).chr(150) => 'O', chr(195).chr(153) => 'U',
179         chr(195).chr(154) => 'U', chr(195).chr(155) => 'U',
180         chr(195).chr(156) => 'U', chr(195).chr(157) => 'Y',
181         chr(195).chr(159) => 's', chr(195).chr(160) => 'a',
182         chr(195).chr(161) => 'a', chr(195).chr(162) => 'a',
183         chr(195).chr(163) => 'a', chr(195).chr(164) => 'a',
184         chr(195).chr(165) => 'a', chr(195).chr(167) => 'c',
185         chr(195).chr(168) => 'e', chr(195).chr(169) => 'e',
186         chr(195).chr(170) => 'e', chr(195).chr(171) => 'e',
187         chr(195).chr(172) => 'i', chr(195).chr(173) => 'i',
188         chr(195).chr(174) => 'i', chr(195).chr(175) => 'i',
189         chr(195).chr(177) => 'n', chr(195).chr(178) => 'o',
190         chr(195).chr(179) => 'o', chr(195).chr(180) => 'o',
191         chr(195).chr(181) => 'o', chr(195).chr(182) => 'o',
192         chr(195).chr(182) => 'o', chr(195).chr(185) => 'u',
193         chr(195).chr(186) => 'u', chr(195).chr(187) => 'u',
194         chr(195).chr(188) => 'u', chr(195).chr(189) => 'y',
195         chr(195).chr(191) => 'y',
196         // Decompositions for Latin Extended-A
197         chr(196).chr(128) => 'A', chr(196).chr(129) => 'a',
198         chr(196).chr(130) => 'A', chr(196).chr(131) => 'a',
199         chr(196).chr(132) => 'A', chr(196).chr(133) => 'a',
200         chr(196).chr(134) => 'C', chr(196).chr(135) => 'c',
201         chr(196).chr(136) => 'C', chr(196).chr(137) => 'c',
202         chr(196).chr(138) => 'C', chr(196).chr(139) => 'c',
203         chr(196).chr(140) => 'C', chr(196).chr(141) => 'c',
204         chr(196).chr(142) => 'D', chr(196).chr(143) => 'd',
205         chr(196).chr(144) => 'D', chr(196).chr(145) => 'd',
206         chr(196).chr(146) => 'E', chr(196).chr(147) => 'e',
207         chr(196).chr(148) => 'E', chr(196).chr(149) => 'e',
208         chr(196).chr(150) => 'E', chr(196).chr(151) => 'e',
209         chr(196).chr(152) => 'E', chr(196).chr(153) => 'e',
210         chr(196).chr(154) => 'E', chr(196).chr(155) => 'e',
211         chr(196).chr(156) => 'G', chr(196).chr(157) => 'g',
212         chr(196).chr(158) => 'G', chr(196).chr(159) => 'g',
213         chr(196).chr(160) => 'G', chr(196).chr(161) => 'g',
214         chr(196).chr(162) => 'G', chr(196).chr(163) => 'g',
215         chr(196).chr(164) => 'H', chr(196).chr(165) => 'h',
216         chr(196).chr(166) => 'H', chr(196).chr(167) => 'h',
217         chr(196).chr(168) => 'I', chr(196).chr(169) => 'i',
218         chr(196).chr(170) => 'I', chr(196).chr(171) => 'i',
219         chr(196).chr(172) => 'I', chr(196).chr(173) => 'i',
220         chr(196).chr(174) => 'I', chr(196).chr(175) => 'i',
221         chr(196).chr(176) => 'I', chr(196).chr(177) => 'i',
222         chr(196).chr(178) => 'IJ',chr(196).chr(179) => 'ij',
223         chr(196).chr(180) => 'J', chr(196).chr(181) => 'j',
224         chr(196).chr(182) => 'K', chr(196).chr(183) => 'k',
225         chr(196).chr(184) => 'k', chr(196).chr(185) => 'L',
226         chr(196).chr(186) => 'l', chr(196).chr(187) => 'L',
227         chr(196).chr(188) => 'l', chr(196).chr(189) => 'L',
228         chr(196).chr(190) => 'l', chr(196).chr(191) => 'L',
229         chr(197).chr(128) => 'l', chr(197).chr(129) => 'L',
230         chr(197).chr(130) => 'l', chr(197).chr(131) => 'N',
231         chr(197).chr(132) => 'n', chr(197).chr(133) => 'N',
232         chr(197).chr(134) => 'n', chr(197).chr(135) => 'N',
233         chr(197).chr(136) => 'n', chr(197).chr(137) => 'N',
234         chr(197).chr(138) => 'n', chr(197).chr(139) => 'N',
235         chr(197).chr(140) => 'O', chr(197).chr(141) => 'o',
236         chr(197).chr(142) => 'O', chr(197).chr(143) => 'o',
237         chr(197).chr(144) => 'O', chr(197).chr(145) => 'o',
238         chr(197).chr(146) => 'OE',chr(197).chr(147) => 'oe',
239         chr(197).chr(148) => 'R',chr(197).chr(149) => 'r',
240         chr(197).chr(150) => 'R',chr(197).chr(151) => 'r',
241         chr(197).chr(152) => 'R',chr(197).chr(153) => 'r',
242         chr(197).chr(154) => 'S',chr(197).chr(155) => 's',
243         chr(197).chr(156) => 'S',chr(197).chr(157) => 's',
244         chr(197).chr(158) => 'S',chr(197).chr(159) => 's',
245         chr(197).chr(160) => 'S', chr(197).chr(161) => 's',
246         chr(197).chr(162) => 'T', chr(197).chr(163) => 't',
247