3 * Methods to play with strings.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 * A collection of static methods to play with strings.
28 * Test whether a string is valid UTF-8.
30 * The function check for invalid byte sequences, overlong encoding but
31 * not for different normalisations.
33 * @note In MediaWiki 1.21, this function did not provide proper UTF-8 validation.
34 * In particular, the pure PHP code path did not in fact check for overlong forms.
35 * Beware of this when backporting code to that version of MediaWiki.
38 * @param string $value String to check
39 * @return bool Whether the given $value is a valid UTF-8 encoded string
41 static function isUtf8( $value ) {
42 $value = (string)$value;
44 // HHVM 3.4 and older come with an outdated version of libmbfl that
45 // incorrectly allows values above U+10FFFF, so we have to check
46 // for them separately. (This issue also exists in PHP 5.3 and
47 // older, which are no longer supported.)
49 if ( $newPHP === null ) {
50 $newPHP = !mb_check_encoding( "\xf4\x90\x80\x80", 'UTF-8' );
53 return mb_check_encoding( $value, 'UTF-8' ) &&
54 ( $newPHP ||
preg_match( "/\xf4[\x90-\xbf]|[\xf5-\xff]/S", $value ) === 0 );
58 * Explode a string, but ignore any instances of the separator inside
59 * the given start and end delimiters, which may optionally nest.
60 * The delimiters are literal strings, not regular expressions.
61 * @param string $startDelim Start delimiter
62 * @param string $endDelim End delimiter
63 * @param string $separator Separator string for the explode.
64 * @param string $subject Subject string to explode.
65 * @param bool $nested True iff the delimiters are allowed to nest.
66 * @return ArrayIterator
68 static function delimiterExplode( $startDelim, $endDelim, $separator,
69 $subject, $nested = false ) {
73 $encStart = preg_quote( $startDelim, '!' );
74 $encEnd = preg_quote( $endDelim, '!' );
75 $encSep = preg_quote( $separator, '!' );
76 $len = strlen( $subject );
82 "!$encStart|$encEnd|$encSep!S", $subject, $m,
83 PREG_OFFSET_CAPTURE
, $inputPos
88 $inputPos = $matchPos +
strlen( $match );
89 if ( $match === $separator ) {
92 $subject, $lastPos, $matchPos - $lastPos
96 } elseif ( $match === $startDelim ) {
97 if ( $depth === 0 ||
$nested ) {
104 $exploded[] = substr( $subject, $lastPos );
105 // This method could be rewritten in the future to avoid creating an
106 // intermediate array, since the return type is just an iterator.
107 return new ArrayIterator( $exploded );
111 * Perform an operation equivalent to `preg_replace()`
115 * preg_replace( "!$startDelim(.*?)$endDelim!", $replace, $subject );
117 * ..except that it's worst-case O(N) instead of O(N^2). Compared to delimiterReplace(), this
118 * implementation is fast but memory-hungry and inflexible. The memory requirements are such
119 * that I don't recommend using it on anything but guaranteed small chunks of text.
121 * @param string $startDelim
122 * @param string $endDelim
123 * @param string $replace
124 * @param string $subject
127 static function hungryDelimiterReplace( $startDelim, $endDelim, $replace, $subject ) {
128 $segments = explode( $startDelim, $subject );
129 $output = array_shift( $segments );
130 foreach ( $segments as $s ) {
131 $endDelimPos = strpos( $s, $endDelim );
132 if ( $endDelimPos === false ) {
133 $output .= $startDelim . $s;
135 $output .= $replace . substr( $s, $endDelimPos +
strlen( $endDelim ) );
143 * Perform an operation equivalent to `preg_replace_callback()`
147 * preg_replace_callback( "!$startDelim(.*)$endDelim!s$flags", $callback, $subject );
149 * If the start delimiter ends with an initial substring of the end delimiter,
150 * e.g. in the case of C-style comments, the behavior differs from the model
151 * regex. In this implementation, the end must share no characters with the
152 * start, so e.g. `/*\/` is not considered to be both the start and end of a
153 * comment. `/*\/xy/*\/` is considered to be a single comment with contents `/xy/`.
155 * The implementation of delimiterReplaceCallback() is slower than hungryDelimiterReplace()
156 * but uses far less memory. The delimiters are literal strings, not regular expressions.
158 * @param string $startDelim Start delimiter
159 * @param string $endDelim End delimiter
160 * @param callable $callback Function to call on each match
161 * @param string $subject
162 * @param string $flags Regular expression flags
163 * @throws InvalidArgumentException
166 static function delimiterReplaceCallback( $startDelim, $endDelim, $callback,
167 $subject, $flags = ''
174 $encStart = preg_quote( $startDelim, '!' );
175 $encEnd = preg_quote( $endDelim, '!' );
176 $strcmp = strpos( $flags, 'i' ) === false ?
'strcmp' : 'strcasecmp';
177 $endLength = strlen( $endDelim );
180 while ( $inputPos < strlen( $subject ) &&
181 preg_match( "!($encStart)|($encEnd)!S$flags", $subject, $m, PREG_OFFSET_CAPTURE
, $inputPos )
183 $tokenOffset = $m[0][1];
184 if ( $m[1][0] != '' ) {
186 $strcmp( $endDelim, substr( $subject, $tokenOffset, $endLength ) ) == 0
188 # An end match is present at the same location
190 $tokenLength = $endLength;
192 $tokenType = 'start';
193 $tokenLength = strlen( $m[0][0] );
195 } elseif ( $m[2][0] != '' ) {
197 $tokenLength = strlen( $m[0][0] );
199 throw new InvalidArgumentException( 'Invalid delimiter given to ' . __METHOD__
);
202 if ( $tokenType == 'start' ) {
203 # Only move the start position if we haven't already found a start
204 # This means that START START END matches outer pair
205 if ( !$foundStart ) {
207 $inputPos = $tokenOffset +
$tokenLength;
208 # Write out the non-matching section
209 $output .= substr( $subject, $outputPos, $tokenOffset - $outputPos );
210 $outputPos = $tokenOffset;
211 $contentPos = $inputPos;
214 # Move the input position past the *first character* of START,
215 # to protect against missing END when it overlaps with START
216 $inputPos = $tokenOffset +
1;
218 } elseif ( $tokenType == 'end' ) {
221 $output .= call_user_func( $callback, [
222 substr( $subject, $outputPos, $tokenOffset +
$tokenLength - $outputPos ),
223 substr( $subject, $contentPos, $tokenOffset - $contentPos )
227 # Non-matching end, write it out
228 $output .= substr( $subject, $inputPos, $tokenOffset +
$tokenLength - $outputPos );
230 $inputPos = $outputPos = $tokenOffset +
$tokenLength;
232 throw new InvalidArgumentException( 'Invalid delimiter given to ' . __METHOD__
);
235 if ( $outputPos < strlen( $subject ) ) {
236 $output .= substr( $subject, $outputPos );
243 * Perform an operation equivalent to `preg_replace()` with flags.
247 * preg_replace( "!$startDelim(.*)$endDelim!$flags", $replace, $subject );
249 * @param string $startDelim Start delimiter regular expression
250 * @param string $endDelim End delimiter regular expression
251 * @param string $replace Replacement string. May contain $1, which will be
252 * replaced by the text between the delimiters
253 * @param string $subject String to search
254 * @param string $flags Regular expression flags
255 * @return string The string with the matches replaced
257 static function delimiterReplace( $startDelim, $endDelim, $replace, $subject, $flags = '' ) {
258 $replacer = new RegexlikeReplacer( $replace );
260 return self
::delimiterReplaceCallback( $startDelim, $endDelim,
261 $replacer->cb(), $subject, $flags );
265 * More or less "markup-safe" explode()
266 * Ignores any instances of the separator inside `<...>`
267 * @param string $separator
268 * @param string $text
271 static function explodeMarkup( $separator, $text ) {
272 $placeholder = "\x00";
274 // Remove placeholder instances
275 $text = str_replace( $placeholder, '', $text );
277 // Replace instances of the separator inside HTML-like tags with the placeholder
278 $replacer = new DoubleReplacer( $separator, $placeholder );
279 $cleaned = StringUtils
::delimiterReplaceCallback( '<', '>', $replacer->cb(), $text );
281 // Explode, then put the replaced separators back in
282 $items = explode( $separator, $cleaned );
283 foreach ( $items as $i => $str ) {
284 $items[$i] = str_replace( $placeholder, $separator, $str );
291 * More or less "markup-safe" str_replace()
292 * Ignores any instances of the separator inside `<...>`
293 * @param string $search
294 * @param string $replace
295 * @param string $text
298 static function replaceMarkup( $search, $replace, $text ) {
299 $placeholder = "\x00";
301 // Remove placeholder instances
302 $text = str_replace( $placeholder, '', $text );
304 // Replace instances of the separator inside HTML-like tags with the placeholder
305 $replacer = new DoubleReplacer( $search, $placeholder );
306 $cleaned = StringUtils
::delimiterReplaceCallback( '<', '>', $replacer->cb(), $text );
308 // Explode, then put the replaced separators back in
309 $cleaned = str_replace( $search, $replace, $cleaned );
310 $text = str_replace( $placeholder, $search, $cleaned );
316 * Escape a string to make it suitable for inclusion in a preg_replace()
317 * replacement parameter.
319 * @param string $string
322 static function escapeRegexReplacement( $string ) {
323 $string = str_replace( '\\', '\\\\', $string );
324 $string = str_replace( '$', '\\$', $string );
329 * Workalike for explode() with limited memory usage.
331 * @param string $separator
332 * @param string $subject
333 * @return ArrayIterator|ExplodeIterator
335 static function explode( $separator, $subject ) {
336 if ( substr_count( $subject, $separator ) > 1000 ) {
337 return new ExplodeIterator( $separator, $subject );
339 return new ArrayIterator( explode( $separator, $subject ) );