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 );
75 $segments =
explode( $startDelim, $subject );
76 $output = array_shift( $segments );
77 foreach ( $segments
as $s ) {
78 $endDelimPos = strpos( $s, $endDelim );
79 if ( $endDelimPos ===
false ) {
82 $output .= $replace . substr( $s, $endDelimPos + strlen( $endDelim ) );
120 $encStart = preg_quote( $startDelim,
'!' );
121 $encEnd = preg_quote( $endDelim,
'!' );
122 $strcmp = strpos(
$flags,
'i' ) ===
false ?
'strcmp' :
'strcasecmp';
123 $endLength = strlen( $endDelim );
126 while ( $inputPos < strlen( $subject ) &&
127 preg_match(
"!($encStart)|($encEnd)!S$flags", $subject, $m, PREG_OFFSET_CAPTURE, $inputPos )
129 $tokenOffset = $m[0][1];
130 if ( $m[1][0] !=
'' ) {
132 $strcmp( $endDelim, substr( $subject, $tokenOffset, $endLength ) ) == 0
134 # An end match is present at the same location
136 $tokenLength = $endLength;
138 $tokenType =
'start';
139 $tokenLength = strlen( $m[0][0] );
141 } elseif ( $m[2][0] !=
'' ) {
143 $tokenLength = strlen( $m[0][0] );
148 if ( $tokenType ==
'start' ) {
149 # Only move the start position if we haven't already found a start
150 # This means that START START END matches outer pair
151 if ( !$foundStart ) {
153 $inputPos = $tokenOffset + $tokenLength;
154 # Write out the non-matching section
155 $output .= substr( $subject, $outputPos, $tokenOffset - $outputPos );
156 $outputPos = $tokenOffset;
157 $contentPos = $inputPos;
160 # Move the input position past the *first character* of START,
161 # to protect against missing END when it overlaps with START
162 $inputPos = $tokenOffset + 1;
164 } elseif ( $tokenType ==
'end' ) {
167 $output .= call_user_func( $callback, [
168 substr( $subject, $outputPos, $tokenOffset + $tokenLength - $outputPos ),
169 substr( $subject, $contentPos, $tokenOffset - $contentPos )
173 # Non-matching end, write it out
174 $output .= substr( $subject, $inputPos, $tokenOffset + $tokenLength - $outputPos );
176 $inputPos = $outputPos = $tokenOffset + $tokenLength;
181 if ( $outputPos < strlen( $subject ) ) {
182 $output .= substr( $subject, $outputPos );
206 return self::delimiterReplaceCallback( $startDelim, $endDelim,
207 $replacer->cb(), $subject,
$flags );
218 $placeholder =
"\x00";
221 $text = str_replace( $placeholder,
'', $text );
228 $items =
explode( $separator, $cleaned );
229 foreach ( $items
as $i => $str ) {
230 $items[$i] = str_replace( $placeholder, $separator, $str );
245 $placeholder =
"\x00";
248 $text = str_replace( $placeholder,
'', $text );
255 $cleaned = str_replace( $search, $replace, $cleaned );
256 $text = str_replace( $placeholder, $search, $cleaned );
269 $string = str_replace(
'\\',
'\\\\', $string );
270 $string = str_replace(
'$',
'\\$', $string );
281 static function explode( $separator, $subject ) {
282 if ( substr_count( $subject, $separator ) > 1000 ) {
285 return new ArrayIterator(
explode( $separator, $subject ) );
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Class to perform secondary replacement within each replacement string.
static escapeRegexReplacement($string)
Escape a string to make it suitable for inclusion in a preg_replace() replacement parameter...
A collection of static methods to play with strings.
static isUtf8($value)
Test whether a string is valid UTF-8.
static hungryDelimiterReplace($startDelim, $endDelim, $replace, $subject)
Perform an operation equivalent to preg_replace()
static delimiterReplace($startDelim, $endDelim, $replace, $subject, $flags= '')
Perform an operation equivalent to preg_replace() with flags.
static replaceMarkup($search, $replace, $text)
More or less "markup-safe" str_replace() Ignores any instances of the separator inside <...
static delimiterReplaceCallback($startDelim, $endDelim, $callback, $subject, $flags= '')
Perform an operation equivalent to preg_replace_callback()
static explodeMarkup($separator, $text)
More or less "markup-safe" explode() Ignores any instances of the separator inside <...
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object & $output
Class to replace regex matches with a string similar to that used in preg_replace() ...
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
static explode($separator, $subject)
Workalike for explode() with limited memory usage.