MediaWiki master
GlobalFunctions.php
Go to the documentation of this file.
1<?php
35use Wikimedia\AtEase\AtEase;
41use Wikimedia\RequestTimeout\RequestTimeout;
42
53function wfLoadExtension( $ext, $path = null ) {
54 if ( !$path ) {
56 $path = "$wgExtensionDirectory/$ext/extension.json";
57 }
58 ExtensionRegistry::getInstance()->queue( $path );
59}
60
74function wfLoadExtensions( array $exts ) {
76 $registry = ExtensionRegistry::getInstance();
77 foreach ( $exts as $ext ) {
78 $registry->queue( "$wgExtensionDirectory/$ext/extension.json" );
79 }
80}
81
90function wfLoadSkin( $skin, $path = null ) {
91 if ( !$path ) {
92 global $wgStyleDirectory;
93 $path = "$wgStyleDirectory/$skin/skin.json";
94 }
95 ExtensionRegistry::getInstance()->queue( $path );
96}
97
105function wfLoadSkins( array $skins ) {
106 global $wgStyleDirectory;
107 $registry = ExtensionRegistry::getInstance();
108 foreach ( $skins as $skin ) {
109 $registry->queue( "$wgStyleDirectory/$skin/skin.json" );
110 }
111}
112
120function wfArrayDiff2( $arr1, $arr2 ) {
121 wfDeprecated( __FUNCTION__, '1.43' );
126 $comparator = static function ( $a, $b ): int {
127 if ( is_string( $a ) && is_string( $b ) ) {
128 return strcmp( $a, $b );
129 }
130 if ( !is_array( $a ) && !is_array( $b ) ) {
131 throw new InvalidArgumentException(
132 'This function assumes that array elements are all strings or all arrays'
133 );
134 }
135 if ( count( $a ) !== count( $b ) ) {
136 return count( $a ) <=> count( $b );
137 } else {
138 reset( $a );
139 reset( $b );
140 while ( key( $a ) !== null && key( $b ) !== null ) {
141 $valueA = current( $a );
142 $valueB = current( $b );
143 $cmp = strcmp( $valueA, $valueB );
144 if ( $cmp !== 0 ) {
145 return $cmp;
146 }
147 next( $a );
148 next( $b );
149 }
150 return 0;
151 }
152 };
153 return array_udiff( $arr1, $arr2, $comparator );
154}
155
176function wfMergeErrorArrays( ...$args ) {
177 wfDeprecated( __FUNCTION__, '1.43' );
178 $out = [];
179 foreach ( $args as $errors ) {
180 foreach ( $errors as $params ) {
181 $originalParams = $params;
182 if ( $params[0] instanceof MessageSpecifier ) {
183 $params = [ $params[0]->getKey(), ...$params[0]->getParams() ];
184 }
185 # @todo FIXME: Sometimes get nested arrays for $params,
186 # which leads to E_NOTICEs
187 $spec = implode( "\t", $params );
188 $out[$spec] = $originalParams;
189 }
190 }
191 return array_values( $out );
192}
193
203function wfArrayInsertAfter( array $array, array $insert, $after ) {
204 // Find the offset of the element to insert after.
205 $keys = array_keys( $array );
206 $offsetByKey = array_flip( $keys );
207
208 if ( !\array_key_exists( $after, $offsetByKey ) ) {
209 return $array;
210 }
211 $offset = $offsetByKey[$after];
212
213 // Insert at the specified offset
214 $before = array_slice( $array, 0, $offset + 1, true );
215 $after = array_slice( $array, $offset + 1, count( $array ) - $offset, true );
216
217 $output = $before + $insert + $after;
218
219 return $output;
220}
221
230function wfObjectToArray( $objOrArray, $recursive = true ) {
231 $array = [];
232 if ( is_object( $objOrArray ) ) {
233 $objOrArray = get_object_vars( $objOrArray );
234 }
235 foreach ( $objOrArray as $key => $value ) {
236 if ( $recursive && ( is_object( $value ) || is_array( $value ) ) ) {
237 $value = wfObjectToArray( $value );
238 }
239
240 $array[$key] = $value;
241 }
242
243 return $array;
244}
245
256function wfRandom() {
257 // The maximum random value is "only" 2^31-1, so get two random
258 // values to reduce the chance of dupes
259 $max = mt_getrandmax() + 1;
260 $rand = number_format( ( mt_rand() * $max + mt_rand() ) / $max / $max, 12, '.', '' );
261 return $rand;
262}
263
274function wfRandomString( $length = 32 ) {
275 $str = '';
276 for ( $n = 0; $n < $length; $n += 7 ) {
277 $str .= sprintf( '%07x', mt_rand() & 0xfffffff );
278 }
279 return substr( $str, 0, $length );
280}
281
309function wfUrlencode( $s ) {
310 static $needle;
311
312 if ( $s === null ) {
313 // Reset $needle for testing.
314 $needle = null;
315 return '';
316 }
317
318 if ( $needle === null ) {
319 $needle = [ '%3B', '%40', '%24', '%21', '%2A', '%28', '%29', '%2C', '%2F', '%7E' ];
320 if ( !isset( $_SERVER['SERVER_SOFTWARE'] ) ||
321 !str_contains( $_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS/7' )
322 ) {
323 $needle[] = '%3A';
324 }
325 }
326
327 $s = urlencode( $s );
328 $s = str_ireplace(
329 $needle,
330 [ ';', '@', '$', '!', '*', '(', ')', ',', '/', '~', ':' ],
331 $s
332 );
333
334 return $s;
335}
336
347function wfArrayToCgi( $array1, $array2 = null, $prefix = '' ) {
348 if ( $array2 !== null ) {
349 $array1 += $array2;
350 }
351
352 $cgi = '';
353 foreach ( $array1 as $key => $value ) {
354 if ( $value !== null && $value !== false ) {
355 if ( $cgi != '' ) {
356 $cgi .= '&';
357 }
358 if ( $prefix !== '' ) {
359 $key = $prefix . "[$key]";
360 }
361 if ( is_array( $value ) ) {
362 $firstTime = true;
363 foreach ( $value as $k => $v ) {
364 $cgi .= $firstTime ? '' : '&';
365 if ( is_array( $v ) ) {
366 $cgi .= wfArrayToCgi( $v, null, $key . "[$k]" );
367 } else {
368 $cgi .= urlencode( $key . "[$k]" ) . '=' . urlencode( $v );
369 }
370 $firstTime = false;
371 }
372 } else {
373 if ( is_object( $value ) ) {
374 $value = $value->__toString();
375 }
376 $cgi .= urlencode( $key ) . '=' . urlencode( $value );
377 }
378 }
379 }
380 return $cgi;
381}
382
392function wfCgiToArray( $query ) {
393 if ( isset( $query[0] ) && $query[0] == '?' ) {
394 $query = substr( $query, 1 );
395 }
396 $bits = explode( '&', $query );
397 $ret = [];
398 foreach ( $bits as $bit ) {
399 if ( $bit === '' ) {
400 continue;
401 }
402 if ( strpos( $bit, '=' ) === false ) {
403 // Pieces like &qwerty become 'qwerty' => '' (at least this is what php does)
404 $key = $bit;
405 $value = '';
406 } else {
407 [ $key, $value ] = explode( '=', $bit );
408 }
409 $key = urldecode( $key );
410 $value = urldecode( $value );
411 if ( strpos( $key, '[' ) !== false ) {
412 $keys = array_reverse( explode( '[', $key ) );
413 $key = array_pop( $keys );
414 $temp = $value;
415 foreach ( $keys as $k ) {
416 $k = substr( $k, 0, -1 );
417 $temp = [ $k => $temp ];
418 }
419 if ( isset( $ret[$key] ) && is_array( $ret[$key] ) ) {
420 $ret[$key] = array_merge( $ret[$key], $temp );
421 } else {
422 $ret[$key] = $temp;
423 }
424 } else {
425 $ret[$key] = $value;
426 }
427 }
428 return $ret;
429}
430
439function wfAppendQuery( $url, $query ) {
440 if ( is_array( $query ) ) {
441 $query = wfArrayToCgi( $query );
442 }
443 if ( $query != '' ) {
444 // Remove the fragment, if there is one
445 $fragment = false;
446 $hashPos = strpos( $url, '#' );
447 if ( $hashPos !== false ) {
448 $fragment = substr( $url, $hashPos );
449 $url = substr( $url, 0, $hashPos );
450 }
451
452 // Add parameter
453 if ( strpos( $url, '?' ) === false ) {
454 $url .= '?';
455 } else {
456 $url .= '&';
457 }
458 $url .= $query;
459
460 // Put the fragment back
461 if ( $fragment !== false ) {
462 $url .= $fragment;
463 }
464 }
465 return $url;
466}
467
476
477 if ( MediaWikiServices::hasInstance() ) {
478 $services = MediaWikiServices::getInstance();
479 if ( $services->hasService( 'UrlUtils' ) ) {
480 return $services->getUrlUtils();
481 }
482 }
483
484 return new UrlUtils( [
485 // UrlUtils throws if the relevant $wg(|Canonical|Internal) variable is null, but the old
486 // implementations implicitly converted it to an empty string (presumably by mistake).
487 // Preserve the old behavior for compatibility.
488 UrlUtils::SERVER => $wgServer ?? '',
489 UrlUtils::CANONICAL_SERVER => $wgCanonicalServer ?? '',
490 UrlUtils::INTERNAL_SERVER => $wgInternalServer ?? '',
491 UrlUtils::FALLBACK_PROTOCOL => $wgRequest ? $wgRequest->getProtocol()
492 : WebRequest::detectProtocol(),
493 UrlUtils::HTTPS_PORT => $wgHttpsPort,
494 UrlUtils::VALID_PROTOCOLS => $wgUrlProtocols,
495 ] );
496}
497
525function wfExpandUrl( $url, $defaultProto = PROTO_CURRENT ) {
526 return wfGetUrlUtils()->expand( (string)$url, $defaultProto ) ?? false;
527}
528
538function wfGetServerUrl( $proto ) {
539 wfDeprecated( __FUNCTION__, '1.39' );
540
541 return wfGetUrlUtils()->getServer( $proto ) ?? '';
542}
543
556function wfAssembleUrl( $urlParts ) {
557 return UrlUtils::assemble( (array)$urlParts );
558}
559
568function wfUrlProtocols( $includeProtocolRelative = true ) {
569 wfDeprecated( __FUNCTION__, '1.39' );
570
571 return $includeProtocolRelative ? wfGetUrlUtils()->validProtocols() :
572 wfGetUrlUtils()->validAbsoluteProtocols();
573}
574
583 return wfGetUrlUtils()->validAbsoluteProtocols();
584}
585
612function wfParseUrl( $url ) {
613 return wfGetUrlUtils()->parse( (string)$url ) ?? false;
614}
615
625function wfExpandIRI( $url ) {
626 wfDeprecated( __FUNCTION__, '1.39' );
627
628 return wfGetUrlUtils()->expandIRI( (string)$url ) ?? '';
629}
630
639function wfMatchesDomainList( $url, $domains ) {
640 return wfGetUrlUtils()->matchesDomainList( (string)$url, (array)$domains );
641}
642
663function wfDebug( $text, $dest = 'all', array $context = [] ) {
665
666 if ( !$wgDebugRawPage && wfIsDebugRawPage() ) {
667 return;
668 }
669
670 $text = trim( $text );
671
672 if ( $wgDebugLogPrefix !== '' ) {
673 $context['prefix'] = $wgDebugLogPrefix;
674 }
675 $context['private'] = ( $dest === false || $dest === 'private' );
676
677 $logger = LoggerFactory::getInstance( 'wfDebug' );
678 $logger->debug( $text, $context );
679}
680
686 static $cache;
687 if ( $cache !== null ) {
688 return $cache;
689 }
690 // Check for raw action using $_GET not $wgRequest, since the latter might not be initialised yet
691 // phpcs:ignore MediaWiki.Usage.SuperGlobalsUsage.SuperGlobals
692 if ( ( isset( $_GET['action'] ) && $_GET['action'] == 'raw' )
693 || MW_ENTRY_POINT === 'load'
694 ) {
695 $cache = true;
696 } else {
697 $cache = false;
698 }
699 return $cache;
700}
701
727function wfDebugLog(
728 $logGroup, $text, $dest = 'all', array $context = []
729) {
730 $text = trim( $text );
731
732 $logger = LoggerFactory::getInstance( $logGroup );
733 $context['private'] = ( $dest === false || $dest === 'private' );
734 $logger->info( $text, $context );
735}
736
745function wfLogDBError( $text, array $context = [] ) {
746 $logger = LoggerFactory::getInstance( 'wfLogDBError' );
747 $logger->error( trim( $text ), $context );
748}
749
766function wfDeprecated( $function, $version = false, $component = false, $callerOffset = 2 ) {
767 if ( !is_string( $version ) && $version !== false ) {
768 throw new InvalidArgumentException(
769 "MediaWiki version must either be a string or false. " .
770 "Example valid version: '1.33'"
771 );
772 }
773
774 MWDebug::deprecated( $function, $version, $component, $callerOffset + 1 );
775}
776
797function wfDeprecatedMsg( $msg, $version = false, $component = false, $callerOffset = 2 ) {
798 MWDebug::deprecatedMsg( $msg, $version, $component,
799 $callerOffset === false ? false : $callerOffset + 1 );
800}
801
812function wfWarn( $msg, $callerOffset = 1, $level = E_USER_NOTICE ) {
813 MWDebug::warning( $msg, $callerOffset + 1, $level, 'auto' );
814}
815
825function wfLogWarning( $msg, $callerOffset = 1, $level = E_USER_WARNING ) {
826 MWDebug::warning( $msg, $callerOffset + 1, $level, 'production' );
827}
828
851function wfMessage( $key, ...$params ) {
852 if ( is_array( $key ) ) {
853 // Fallback keys are not allowed in message specifiers
854 $message = wfMessageFallback( ...$key );
855 } else {
856 $message = Message::newFromSpecifier( $key );
857 }
858
859 // We call Message::params() to reduce code duplication
860 if ( $params ) {
861 $message->params( ...$params );
862 }
863
864 return $message;
865}
866
879function wfMessageFallback( ...$keys ) {
880 return Message::newFallbackSequence( ...$keys );
881}
882
891function wfMsgReplaceArgs( $message, $args ) {
892 # Fix windows line-endings
893 # Some messages are split with explode("\n", $msg)
894 $message = str_replace( "\r", '', $message );
895
896 // Replace arguments
897 if ( is_array( $args ) && $args ) {
898 if ( is_array( $args[0] ) ) {
899 $args = array_values( $args[0] );
900 }
901 $replacementKeys = [];
902 foreach ( $args as $n => $param ) {
903 $replacementKeys['$' . ( $n + 1 )] = $param;
904 }
905 $message = strtr( $message, $replacementKeys );
906 }
907
908 return $message;
909}
910
919function wfHostname() {
920 // Hostname overriding
921 global $wgOverrideHostname;
922 if ( $wgOverrideHostname !== false ) {
923 return $wgOverrideHostname;
924 }
925
926 return php_uname( 'n' ) ?: 'unknown';
927}
928
939function wfDebugBacktrace( $limit = 0 ) {
940 static $disabled = null;
941
942 if ( $disabled === null ) {
943 $disabled = !function_exists( 'debug_backtrace' );
944 if ( $disabled ) {
945 wfDebug( "debug_backtrace() is disabled" );
946 }
947 }
948 if ( $disabled ) {
949 return [];
950 }
951
952 if ( $limit ) {
953 return array_slice( debug_backtrace( DEBUG_BACKTRACE_PROVIDE_OBJECT, $limit + 1 ), 1 );
954 } else {
955 return array_slice( debug_backtrace(), 1 );
956 }
957}
958
967function wfBacktrace( $raw = null ) {
968 $raw ??= MW_ENTRY_POINT === 'cli';
969 if ( $raw ) {
970 $frameFormat = "%s line %s calls %s()\n";
971 $traceFormat = "%s";
972 } else {
973 $frameFormat = "<li>%s line %s calls %s()</li>\n";
974 $traceFormat = "<ul>\n%s</ul>\n";
975 }
976
977 $frames = array_map( static function ( $frame ) use ( $frameFormat ) {
978 $file = !empty( $frame['file'] ) ? basename( $frame['file'] ) : '-';
979 $line = $frame['line'] ?? '-';
980 $call = $frame['function'];
981 if ( !empty( $frame['class'] ) ) {
982 $call = $frame['class'] . $frame['type'] . $call;
983 }
984 return sprintf( $frameFormat, $file, $line, $call );
985 }, wfDebugBacktrace() );
986
987 return sprintf( $traceFormat, implode( '', $frames ) );
988}
989
1000function wfGetCaller( $level = 2 ) {
1001 $backtrace = wfDebugBacktrace( $level + 1 );
1002 if ( isset( $backtrace[$level] ) ) {
1003 return wfFormatStackFrame( $backtrace[$level] );
1004 } else {
1005 return 'unknown';
1006 }
1007}
1008
1016function wfGetAllCallers( $limit = 3 ) {
1017 $trace = array_reverse( wfDebugBacktrace() );
1018 if ( !$limit || $limit > count( $trace ) - 1 ) {
1019 $limit = count( $trace ) - 1;
1020 }
1021 $trace = array_slice( $trace, -$limit - 1, $limit );
1022 return implode( '/', array_map( 'wfFormatStackFrame', $trace ) );
1023}
1024
1037function wfFormatStackFrame( $frame ) {
1038 if ( !isset( $frame['function'] ) ) {
1039 return 'NO_FUNCTION_GIVEN';
1040 }
1041 return isset( $frame['class'] ) && isset( $frame['type'] ) ?
1042 $frame['class'] . $frame['type'] . $frame['function'] :
1043 $frame['function'];
1044}
1045
1055function wfClientAcceptsGzip( $force = false ) {
1056 static $result = null;
1057 if ( $result === null || $force ) {
1058 $result = false;
1059 if ( isset( $_SERVER['HTTP_ACCEPT_ENCODING'] ) ) {
1060 # @todo FIXME: We may want to disallow some broken browsers
1061 $m = [];
1062 if ( preg_match(
1063 '/\bgzip(?:;(q)=([0-9]+(?:\.[0-9]+)))?\b/',
1064 $_SERVER['HTTP_ACCEPT_ENCODING'],
1065 $m
1066 )
1067 ) {
1068 if ( isset( $m[2] ) && ( $m[1] == 'q' ) && ( $m[2] == 0 ) ) {
1069 return $result;
1070 }
1071 wfDebug( "wfClientAcceptsGzip: client accepts gzip." );
1072 $result = true;
1073 }
1074 }
1075 }
1076 return $result;
1077}
1078
1089function wfEscapeWikiText( $input ): string {
1090 global $wgEnableMagicLinks;
1091 static $repl = null, $repl2 = null, $repl3 = null, $repl4 = null;
1092 if ( $repl === null || defined( 'MW_PARSER_TEST' ) || defined( 'MW_PHPUNIT_TEST' ) ) {
1093 // Tests depend upon being able to change $wgEnableMagicLinks, so don't cache
1094 // in those situations
1095 $repl = [
1096 '"' => '&#34;', '&' => '&#38;', "'" => '&#39;', '<' => '&#60;',
1097 '=' => '&#61;', '>' => '&#62;', '[' => '&#91;', ']' => '&#93;',
1098 '{' => '&#123;', '|' => '&#124;', '}' => '&#125;',
1099 ';' => '&#59;', // a token inside language converter brackets
1100 '!!' => '&#33;!', // a token inside table context
1101 "\n!" => "\n&#33;", "\r!" => "\r&#33;", // a token inside table context
1102 "\n#" => "\n&#35;", "\r#" => "\r&#35;",
1103 "\n*" => "\n&#42;", "\r*" => "\r&#42;",
1104 "\n:" => "\n&#58;", "\r:" => "\r&#58;",
1105 "\n " => "\n&#32;", "\r " => "\r&#32;",
1106 "\n\n" => "\n&#10;", "\r\n" => "&#13;\n",
1107 "\n\r" => "\n&#13;", "\r\r" => "\r&#13;",
1108 "\n\t" => "\n&#9;", "\r\t" => "\r&#9;", // "\n\t\n" is treated like "\n\n"
1109 "\n----" => "\n&#45;---", "\r----" => "\r&#45;---",
1110 '__' => '_&#95;', '://' => '&#58;//',
1111 '~~~' => '~~&#126;', // protect from PST, just to be safe(r)
1112 ];
1113
1114 $magicLinks = array_keys( array_filter( $wgEnableMagicLinks ) );
1115 // We have to catch everything "\s" matches in PCRE
1116 foreach ( $magicLinks as $magic ) {
1117 $repl["$magic "] = "$magic&#32;";
1118 $repl["$magic\t"] = "$magic&#9;";
1119 $repl["$magic\r"] = "$magic&#13;";
1120 $repl["$magic\n"] = "$magic&#10;";
1121 $repl["$magic\f"] = "$magic&#12;";
1122 }
1123 // Additionally escape the following characters at the beginning of the
1124 // string, in case they merge to form tokens when spliced into a
1125 // string. Tokens like -{ {{ [[ {| etc are already escaped because
1126 // the second character is escaped above, but the following tokens
1127 // are handled here: |+ |- __FOO__ ~~~
1128 $repl3 = [
1129 '+' => '&#43;', '-' => '&#45;', '_' => '&#95;', '~' => '&#126;',
1130 ];
1131 // Similarly, protect the following characters at the end of the
1132 // string, which could turn form the start of `__FOO__` or `~~~~`
1133 // A trailing newline could also form the unintended start of a
1134 // paragraph break if it is glued to a newline in the following
1135 // context.
1136 $repl4 = [
1137 '_' => '&#95;', '~' => '&#126;',
1138 "\n" => "&#10;", "\r" => "&#13;",
1139 "\t" => "&#9;", // "\n\t\n" is treated like "\n\n"
1140 ];
1141
1142 // And handle protocols that don't use "://"
1143 global $wgUrlProtocols;
1144 $repl2 = [];
1145 foreach ( $wgUrlProtocols as $prot ) {
1146 if ( substr( $prot, -1 ) === ':' ) {
1147 $repl2[] = preg_quote( substr( $prot, 0, -1 ), '/' );
1148 }
1149 }
1150 $repl2 = $repl2 ? '/\b(' . implode( '|', $repl2 ) . '):/i' : '/^(?!)/';
1151 }
1152 // Tell phan that $repl2, $repl3 and $repl4 will also be non-null here
1153 '@phan-var string $repl2';
1154 '@phan-var string $repl3';
1155 '@phan-var string $repl4';
1156 // This will also stringify input in case it's not a string
1157 $text = substr( strtr( "\n$input", $repl ), 1 );
1158 if ( $text === '' ) {
1159 return $text;
1160 }
1161 $first = strtr( $text[0], $repl3 ); // protect first character
1162 if ( strlen( $text ) > 1 ) {
1163 $text = $first . substr( $text, 1, -1 ) .
1164 strtr( substr( $text, -1 ), $repl4 ); // protect last character
1165 } else {
1166 // special case for single-character strings
1167 $text = strtr( $first, $repl4 ); // protect last character
1168 }
1169 $text = preg_replace( $repl2, '$1&#58;', $text );
1170 return $text;
1171}
1172
1183function wfSetVar( &$dest, $source, $force = false ) {
1184 $temp = $dest;
1185 if ( $source !== null || $force ) {
1186 $dest = $source;
1187 }
1188 return $temp;
1189}
1190
1200function wfSetBit( &$dest, $bit, $state = true ) {
1201 $temp = (bool)( $dest & $bit );
1202 if ( $state !== null ) {
1203 if ( $state ) {
1204 $dest |= $bit;
1205 } else {
1206 $dest &= ~$bit;
1207 }
1208 }
1209 return $temp;
1210}
1211
1218function wfVarDump( $var ) {
1219 global $wgOut;
1220 $s = str_replace( "\n", "<br />\n", var_export( $var, true ) . "\n" );
1221 if ( headers_sent() || !isset( $wgOut ) || !is_object( $wgOut ) ) {
1222 print $s;
1223 } else {
1224 $wgOut->addHTML( $s );
1225 }
1226}
1227
1235function wfHttpError( $code, $label, $desc ) {
1236 global $wgOut;
1237 HttpStatus::header( $code );
1238 if ( $wgOut ) {
1239 $wgOut->disable();
1240 $wgOut->sendCacheControl();
1241 }
1242
1243 \MediaWiki\Request\HeaderCallback::warnIfHeadersSent();
1244 header( 'Content-type: text/html; charset=utf-8' );
1245 ob_start();
1246 print '<!DOCTYPE html>' .
1247 '<html><head><title>' .
1248 htmlspecialchars( $label ) .
1249 '</title></head><body><h1>' .
1250 htmlspecialchars( $label ) .
1251 '</h1><p>' .
1252 nl2br( htmlspecialchars( $desc ) ) .
1253 "</p></body></html>\n";
1254 header( 'Content-Length: ' . ob_get_length() );
1255 ob_end_flush();
1256}
1257
1278function wfResetOutputBuffers( $resetGzipEncoding = true ) {
1279 // phpcs:ignore Generic.CodeAnalysis.AssignmentInCondition.FoundInWhileCondition
1280 while ( $status = ob_get_status() ) {
1281 if ( isset( $status['flags'] ) ) {
1282 $flags = PHP_OUTPUT_HANDLER_CLEANABLE | PHP_OUTPUT_HANDLER_REMOVABLE;
1283 $deleteable = ( $status['flags'] & $flags ) === $flags;
1284 } elseif ( isset( $status['del'] ) ) {
1285 $deleteable = $status['del'];
1286 } else {
1287 // Guess that any PHP-internal setting can't be removed.
1288 $deleteable = $status['type'] !== 0; /* PHP_OUTPUT_HANDLER_INTERNAL */
1289 }
1290 if ( !$deleteable ) {
1291 // Give up, and hope the result doesn't break
1292 // output behavior.
1293 break;
1294 }
1295 if ( $status['name'] === 'MediaWikiIntegrationTestCase::wfResetOutputBuffersBarrier' ) {
1296 // Unit testing barrier to prevent this function from breaking PHPUnit.
1297 break;
1298 }
1299 if ( !ob_end_clean() ) {
1300 // Could not remove output buffer handler; abort now
1301 // to avoid getting in some kind of infinite loop.
1302 break;
1303 }
1304 if ( $resetGzipEncoding && $status['name'] == 'ob_gzhandler' ) {
1305 // Reset the 'Content-Encoding' field set by this handler
1306 // so we can start fresh.
1307 header_remove( 'Content-Encoding' );
1308 break;
1309 }
1310 }
1311}
1312
1323function wfTimestamp( $outputtype = TS_UNIX, $ts = 0 ) {
1324 $ret = MWTimestamp::convert( $outputtype, $ts );
1325 if ( $ret === false ) {
1326 wfDebug( "wfTimestamp() fed bogus time value: TYPE=$outputtype; VALUE=$ts" );
1327 }
1328 return $ret;
1329}
1330
1339function wfTimestampOrNull( $outputtype = TS_UNIX, $ts = null ) {
1340 if ( $ts === null ) {
1341 return null;
1342 } else {
1343 return wfTimestamp( $outputtype, $ts );
1344 }
1345}
1346
1352function wfTimestampNow() {
1353 return MWTimestamp::now( TS_MW );
1354}
1355
1367function wfTempDir() {
1368 global $wgTmpDirectory;
1369
1370 if ( $wgTmpDirectory !== false ) {
1371 return $wgTmpDirectory;
1372 }
1373
1374 return TempFSFile::getUsableTempDirectory();
1375}
1376
1385function wfMkdirParents( $dir, $mode = null, $caller = null ) {
1386 global $wgDirectoryMode;
1387
1388 if ( FileBackend::isStoragePath( $dir ) ) {
1389 throw new LogicException( __FUNCTION__ . " given storage path '$dir'." );
1390 }
1391 if ( $caller !== null ) {
1392 wfDebug( "$caller: called wfMkdirParents($dir)" );
1393 }
1394 if ( strval( $dir ) === '' ) {
1395 return true;
1396 }
1397
1398 $dir = str_replace( [ '\\', '/' ], DIRECTORY_SEPARATOR, $dir );
1399 $mode ??= $wgDirectoryMode;
1400
1401 // Turn off the normal warning, we're doing our own below
1402 // PHP doesn't include the path in its warning message, so we add our own to aid in diagnosis.
1403 //
1404 // Repeat existence check if creation failed so that we silently recover in case of
1405 // a race condition where another request created it since the first check.
1406 //
1407 // phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged
1408 $ok = is_dir( $dir ) || @mkdir( $dir, $mode, true ) || is_dir( $dir );
1409 if ( !$ok ) {
1410 trigger_error( sprintf( "failed to mkdir \"%s\" mode 0%o", $dir, $mode ), E_USER_WARNING );
1411 }
1412
1413 return $ok;
1414}
1415
1421function wfRecursiveRemoveDir( $dir ) {
1422 // taken from https://www.php.net/manual/en/function.rmdir.php#98622
1423 if ( is_dir( $dir ) ) {
1424 $objects = scandir( $dir );
1425 foreach ( $objects as $object ) {
1426 if ( $object != "." && $object != ".." ) {
1427 if ( filetype( $dir . '/' . $object ) == "dir" ) {
1428 wfRecursiveRemoveDir( $dir . '/' . $object );
1429 } else {
1430 unlink( $dir . '/' . $object );
1431 }
1432 }
1433 }
1434 rmdir( $dir );
1435 }
1436}
1437
1444function wfPercent( $nr, int $acc = 2, bool $round = true ) {
1445 $accForFormat = $acc >= 0 ? $acc : 0;
1446 $ret = sprintf( "%.{$accForFormat}f", $nr );
1447 return $round ? round( (float)$ret, $acc ) . '%' : "$ret%";
1448}
1449
1473function wfIniGetBool( $setting ) {
1474 return wfStringToBool( ini_get( $setting ) );
1475}
1476
1489function wfStringToBool( $val ) {
1490 $val = strtolower( $val );
1491 // 'on' and 'true' can't have whitespace around them, but '1' can.
1492 return $val == 'on'
1493 || $val == 'true'
1494 || $val == 'yes'
1495 || preg_match( "/^\s*[+-]?0*[1-9]/", $val ); // approx C atoi() function
1496}
1497
1511function wfEscapeShellArg( ...$args ) {
1512 return Shell::escape( ...$args );
1513}
1514
1539function wfShellExec( $cmd, &$retval = null, $environ = [],
1540 $limits = [], $options = []
1541) {
1542 if ( Shell::isDisabled() ) {
1543 $retval = 1;
1544 // Backwards compatibility be upon us...
1545 return 'Unable to run external programs, proc_open() is disabled.';
1546 }
1547
1548 if ( is_array( $cmd ) ) {
1549 $cmd = Shell::escape( $cmd );
1550 }
1551
1552 $includeStderr = isset( $options['duplicateStderr'] ) && $options['duplicateStderr'];
1553 $profileMethod = $options['profileMethod'] ?? wfGetCaller();
1554
1555 try {
1556 $result = Shell::command( [] )
1557 ->unsafeParams( (array)$cmd )
1558 ->environment( $environ )
1559 ->limits( $limits )
1560 ->includeStderr( $includeStderr )
1561 ->profileMethod( $profileMethod )
1562 // For b/c
1563 ->restrict( Shell::RESTRICT_NONE )
1564 ->execute();
1565 } catch ( ProcOpenError $ex ) {
1566 $retval = -1;
1567 return '';
1568 }
1569
1570 $retval = $result->getExitCode();
1571
1572 return $result->getStdout();
1573}
1574
1592function wfShellExecWithStderr( $cmd, &$retval = null, $environ = [], $limits = [] ) {
1593 return wfShellExec( $cmd, $retval, $environ, $limits,
1594 [ 'duplicateStderr' => true, 'profileMethod' => wfGetCaller() ] );
1595}
1596
1612function wfShellWikiCmd( $script, array $parameters = [], array $options = [] ) {
1613 global $wgPhpCli;
1614 // Give site config file a chance to run the script in a wrapper.
1615 // The caller may likely want to call wfBasename() on $script.
1616 ( new HookRunner( MediaWikiServices::getInstance()->getHookContainer() ) )
1617 ->onWfShellWikiCmd( $script, $parameters, $options );
1618 $cmd = [ $options['php'] ?? $wgPhpCli ];
1619 if ( isset( $options['wrapper'] ) ) {
1620 $cmd[] = $options['wrapper'];
1621 }
1622 $cmd[] = $script;
1623 // Escape each parameter for shell
1624 return Shell::escape( array_merge( $cmd, $parameters ) );
1625}
1626
1643function wfMerge(
1644 string $old,
1645 string $mine,
1646 string $yours,
1647 ?string &$simplisticMergeAttempt,
1648 ?string &$mergeLeftovers = null
1649): bool {
1650 global $wgDiff3;
1651
1652 # This check may also protect against code injection in
1653 # case of broken installations.
1654 AtEase::suppressWarnings();
1655 $haveDiff3 = $wgDiff3 && file_exists( $wgDiff3 );
1656 AtEase::restoreWarnings();
1657
1658 if ( !$haveDiff3 ) {
1659 wfDebug( "diff3 not found" );
1660 return false;
1661 }
1662
1663 # Make temporary files
1664 $td = wfTempDir();
1665 $oldtextFile = fopen( $oldtextName = tempnam( $td, 'merge-old-' ), 'w' );
1666 $mytextFile = fopen( $mytextName = tempnam( $td, 'merge-mine-' ), 'w' );
1667 $yourtextFile = fopen( $yourtextName = tempnam( $td, 'merge-your-' ), 'w' );
1668
1669 # NOTE: diff3 issues a warning to stderr if any of the files does not end with
1670 # a newline character. To avoid this, we normalize the trailing whitespace before
1671 # creating the diff.
1672
1673 fwrite( $oldtextFile, rtrim( $old ) . "\n" );
1674 fclose( $oldtextFile );
1675 fwrite( $mytextFile, rtrim( $mine ) . "\n" );
1676 fclose( $mytextFile );
1677 fwrite( $yourtextFile, rtrim( $yours ) . "\n" );
1678 fclose( $yourtextFile );
1679
1680 # Check for a conflict
1681 $cmd = Shell::escape( $wgDiff3, '--text', '--overlap-only', $mytextName,
1682 $oldtextName, $yourtextName );
1683 $handle = popen( $cmd, 'r' );
1684
1685 $mergeLeftovers = '';
1686 do {
1687 $data = fread( $handle, 8192 );
1688 if ( strlen( $data ) == 0 ) {
1689 break;
1690 }
1691 $mergeLeftovers .= $data;
1692 } while ( true );
1693 pclose( $handle );
1694
1695 $conflict = $mergeLeftovers !== '';
1696
1697 # Merge differences automatically where possible, preferring "my" text for conflicts.
1698 $cmd = Shell::escape( $wgDiff3, '--text', '--ed', '--merge', $mytextName,
1699 $oldtextName, $yourtextName );
1700 $handle = popen( $cmd, 'r' );
1701 $simplisticMergeAttempt = '';
1702 do {
1703 $data = fread( $handle, 8192 );
1704 if ( strlen( $data ) == 0 ) {
1705 break;
1706 }
1707 $simplisticMergeAttempt .= $data;
1708 } while ( true );
1709 pclose( $handle );
1710 unlink( $mytextName );
1711 unlink( $oldtextName );
1712 unlink( $yourtextName );
1713
1714 if ( $simplisticMergeAttempt === '' && $old !== '' && !$conflict ) {
1715 wfDebug( "Unexpected null result from diff3. Command: $cmd" );
1716 $conflict = true;
1717 }
1718 return !$conflict;
1719}
1720
1733function wfBaseName( $path, $suffix = '' ) {
1734 if ( $suffix == '' ) {
1735 $encSuffix = '';
1736 } else {
1737 $encSuffix = '(?:' . preg_quote( $suffix, '#' ) . ')?';
1738 }
1739
1740 $matches = [];
1741 if ( preg_match( "#([^/\\\\]*?){$encSuffix}[/\\\\]*$#", $path, $matches ) ) {
1742 return $matches[1];
1743 } else {
1744 return '';
1745 }
1746}
1747
1757function wfRelativePath( $path, $from ) {
1758 // Normalize mixed input on Windows...
1759 $path = str_replace( '/', DIRECTORY_SEPARATOR, $path );
1760 $from = str_replace( '/', DIRECTORY_SEPARATOR, $from );
1761
1762 // Trim trailing slashes -- fix for drive root
1763 $path = rtrim( $path, DIRECTORY_SEPARATOR );
1764 $from = rtrim( $from, DIRECTORY_SEPARATOR );
1765
1766 $pieces = explode( DIRECTORY_SEPARATOR, dirname( $path ) );
1767 $against = explode( DIRECTORY_SEPARATOR, $from );
1768
1769 if ( $pieces[0] !== $against[0] ) {
1770 // Non-matching Windows drive letters?
1771 // Return a full path.
1772 return $path;
1773 }
1774
1775 // Trim off common prefix
1776 while ( count( $pieces ) && count( $against )
1777 && $pieces[0] == $against[0] ) {
1778 array_shift( $pieces );
1779 array_shift( $against );
1780 }
1781
1782 // relative dots to bump us to the parent
1783 while ( count( $against ) ) {
1784 array_unshift( $pieces, '..' );
1785 array_shift( $against );
1786 }
1787
1788 $pieces[] = wfBaseName( $path );
1789
1790 return implode( DIRECTORY_SEPARATOR, $pieces );
1791}
1792
1830function wfGetDB( $db, $groups = [], $wiki = false ) {
1831 wfDeprecated( __FUNCTION__, '1.39' );
1832
1833 if ( $wiki === false ) {
1834 return MediaWikiServices::getInstance()
1835 ->getDBLoadBalancer()
1836 ->getMaintenanceConnectionRef( $db, $groups, $wiki );
1837 } else {
1838 return MediaWikiServices::getInstance()
1839 ->getDBLoadBalancerFactory()
1840 ->getMainLB( $wiki )
1841 ->getMaintenanceConnectionRef( $db, $groups, $wiki );
1842 }
1843}
1844
1854function wfScript( $script = 'index' ) {
1856 if ( $script === 'index' ) {
1857 return $wgScript;
1858 } elseif ( $script === 'load' ) {
1859 return $wgLoadScript;
1860 } else {
1861 return "{$wgScriptPath}/{$script}.php";
1862 }
1863}
1864
1872function wfBoolToStr( $value ) {
1873 return $value ? 'true' : 'false';
1874}
1875
1881function wfGetNull() {
1882 return wfIsWindows() ? 'NUL' : '/dev/null';
1883}
1884
1894 global $wgIllegalFileChars;
1895 $illegalFileChars = $wgIllegalFileChars ? "|[" . $wgIllegalFileChars . "]" : '';
1896 $name = preg_replace(
1897 "/[^" . Title::legalChars() . "]" . $illegalFileChars . "/",
1898 '-',
1899 $name
1900 );
1901 // $wgIllegalFileChars may not include '/' and '\', so we still need to do this
1902 $name = wfBaseName( $name );
1903 return $name;
1904}
1905
1912function wfMemoryLimit( $newLimit ) {
1913 $oldLimit = wfShorthandToInteger( ini_get( 'memory_limit' ) );
1914 // If the INI config is already unlimited, there is nothing larger
1915 if ( $oldLimit != -1 ) {
1916 $newLimit = wfShorthandToInteger( (string)$newLimit );
1917 if ( $newLimit == -1 ) {
1918 wfDebug( "Removing PHP's memory limit" );
1919 AtEase::suppressWarnings();
1920 ini_set( 'memory_limit', $newLimit );
1921 AtEase::restoreWarnings();
1922 } elseif ( $newLimit > $oldLimit ) {
1923 wfDebug( "Raising PHP's memory limit to $newLimit bytes" );
1924 AtEase::suppressWarnings();
1925 ini_set( 'memory_limit', $newLimit );
1926 AtEase::restoreWarnings();
1927 }
1928 }
1929}
1930
1939
1940 $timeout = RequestTimeout::singleton();
1941 $timeLimit = $timeout->getWallTimeLimit();
1942 if ( $timeLimit !== INF ) {
1943 // RequestTimeout library is active
1944 if ( $wgTransactionalTimeLimit > $timeLimit ) {
1945 $timeout->setWallTimeLimit( $wgTransactionalTimeLimit );
1946 }
1947 } else {
1948 // Fallback case, likely $wgRequestTimeLimit === null
1949 $timeLimit = (int)ini_get( 'max_execution_time' );
1950 // Note that CLI scripts use 0
1951 if ( $timeLimit > 0 && $wgTransactionalTimeLimit > $timeLimit ) {
1952 $timeout->setWallTimeLimit( $wgTransactionalTimeLimit );
1953 }
1954 }
1955 ignore_user_abort( true ); // ignore client disconnects
1956
1957 return $timeLimit;
1958}
1959
1967function wfShorthandToInteger( ?string $string = '', int $default = -1 ): int {
1968 $string = trim( $string ?? '' );
1969 if ( $string === '' ) {
1970 return $default;
1971 }
1972 $last = $string[strlen( $string ) - 1];
1973 $val = intval( $string );
1974 switch ( $last ) {
1975 case 'g':
1976 case 'G':
1977 $val *= 1024;
1978 // break intentionally missing
1979 case 'm':
1980 case 'M':
1981 $val *= 1024;
1982 // break intentionally missing
1983 case 'k':
1984 case 'K':
1985 $val *= 1024;
1986 }
1987
1988 return $val;
1989}
1990
1998function wfIsInfinity( $str ) {
1999 // The INFINITY_VALS are hardcoded elsewhere in MediaWiki (e.g. mediawiki.special.block.js).
2000 return in_array( $str, ExpiryDef::INFINITY_VALS );
2001}
2002
2017function wfThumbIsStandard( File $file, array $params ) {
2019
2020 $multipliers = [ 1 ];
2021 if ( $wgResponsiveImages ) {
2022 // These available sizes are hardcoded currently elsewhere in MediaWiki.
2023 // @see Linker::processResponsiveImages
2024 $multipliers[] = 1.5;
2025 $multipliers[] = 2;
2026 }
2027
2028 $handler = $file->getHandler();
2029 if ( !$handler || !isset( $params['width'] ) ) {
2030 return false;
2031 }
2032
2033 $basicParams = [];
2034 if ( isset( $params['page'] ) ) {
2035 $basicParams['page'] = $params['page'];
2036 }
2037
2038 $thumbLimits = [];
2039 $imageLimits = [];
2040 // Expand limits to account for multipliers
2041 foreach ( $multipliers as $multiplier ) {
2042 $thumbLimits = array_merge( $thumbLimits, array_map(
2043 static function ( $width ) use ( $multiplier ) {
2044 return round( $width * $multiplier );
2045 }, $wgThumbLimits )
2046 );
2047 $imageLimits = array_merge( $imageLimits, array_map(
2048 static function ( $pair ) use ( $multiplier ) {
2049 return [
2050 round( $pair[0] * $multiplier ),
2051 round( $pair[1] * $multiplier ),
2052 ];
2053 }, $wgImageLimits )
2054 );
2055 }
2056
2057 // Check if the width matches one of $wgThumbLimits
2058 if ( in_array( $params['width'], $thumbLimits ) ) {
2059 $normalParams = $basicParams + [ 'width' => $params['width'] ];
2060 // Append any default values to the map (e.g. "lossy", "lossless", ...)
2061 $handler->normaliseParams( $file, $normalParams );
2062 } else {
2063 // If not, then check if the width matches one of $wgImageLimits
2064 $match = false;
2065 foreach ( $imageLimits as $pair ) {
2066 $normalParams = $basicParams + [ 'width' => $pair[0], 'height' => $pair[1] ];
2067 // Decide whether the thumbnail should be scaled on width or height.
2068 // Also append any default values to the map (e.g. "lossy", "lossless", ...)
2069 $handler->normaliseParams( $file, $normalParams );
2070 // Check if this standard thumbnail size maps to the given width
2071 if ( $normalParams['width'] == $params['width'] ) {
2072 $match = true;
2073 break;
2074 }
2075 }
2076 if ( !$match ) {
2077 return false; // not standard for description pages
2078 }
2079 }
2080
2081 // Check that the given values for non-page, non-width, params are just defaults
2082 foreach ( $params as $key => $value ) {
2083 if ( !isset( $normalParams[$key] ) || $normalParams[$key] != $value ) {
2084 return false;
2085 }
2086 }
2087
2088 return true;
2089}
2090
2103function wfArrayPlus2d( array $baseArray, array $newValues ) {
2104 // First merge items that are in both arrays
2105 foreach ( $baseArray as $name => &$groupVal ) {
2106 if ( isset( $newValues[$name] ) ) {
2107 $groupVal += $newValues[$name];
2108 }
2109 }
2110 // Now add items that didn't exist yet
2111 $baseArray += $newValues;
2112
2113 return $baseArray;
2114}
wfIsWindows()
Check if the operating system is Windows.
const PROTO_CURRENT
Definition Defines.php:215
wfThumbIsStandard(File $file, array $params)
Returns true if these thumbnail parameters match one that MediaWiki requests from file description pa...
wfVarDump( $var)
A wrapper around the PHP function var_export().
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfRandom()
Get a random decimal value in the domain of [0, 1), in a way not likely to give duplicate values for ...
wfUrlencode( $s)
We want some things to be included as literal characters in our title URLs for prettiness,...
wfParseUrl( $url)
parse_url() work-alike, but non-broken.
wfTempDir()
Tries to get the system directory for temporary files.
wfWarn( $msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
wfRandomString( $length=32)
Get a random string containing a number of pseudo-random hex characters.
wfTimestampOrNull( $outputtype=TS_UNIX, $ts=null)
Return a formatted timestamp, or null if input is null.
wfBaseName( $path, $suffix='')
Return the final portion of a pathname.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
wfClientAcceptsGzip( $force=false)
Whether the client accept gzip encoding.
wfEscapeShellArg(... $args)
Locale-independent version of escapeshellarg()
wfLogDBError( $text, array $context=[])
Log for database errors.
wfLoadSkins(array $skins)
Load multiple skins at once.
wfEscapeWikiText( $input)
Escapes the given text so that it may be output using addWikiText() without any linking,...
wfUrlProtocolsWithoutProtRel()
Like wfUrlProtocols(), but excludes '//' from the protocol list.
wfRecursiveRemoveDir( $dir)
Remove a directory and all its content.
wfLoadExtension( $ext, $path=null)
Load an extension.
wfMemoryLimit( $newLimit)
Raise PHP's memory limit (if needed).
wfSetBit(&$dest, $bit, $state=true)
As for wfSetVar except setting a bit.
wfIniGetBool( $setting)
Safety wrapper around ini_get() for boolean settings.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfShorthandToInteger(?string $string='', int $default=-1)
Converts shorthand byte notation to integer form.
wfBacktrace( $raw=null)
Get a debug backtrace as a string.
wfArrayDiff2( $arr1, $arr2)
Like array_diff( $arr1, $arr2 ) except that it works with two-dimensional arrays.
wfGetCaller( $level=2)
Get the name of the function which called this function wfGetCaller( 1 ) is the function with the wfG...
wfExpandIRI( $url)
Take a URL, make sure it's expanded to fully qualified, and replace any encoded non-ASCII Unicode cha...
wfMergeErrorArrays(... $args)
Merge arrays in the style of PermissionManager::getPermissionErrors, with duplicate removal e....
wfDeprecatedMsg( $msg, $version=false, $component=false, $callerOffset=2)
Log a deprecation warning with arbitrary message text.
wfGetUrlUtils()
wfShellExec( $cmd, &$retval=null, $environ=[], $limits=[], $options=[])
Execute a shell command, with time and memory limits mirrored from the PHP configuration if supported...
wfIsDebugRawPage()
Returns true if debug logging should be suppressed if $wgDebugRawPage = false.
wfHostname()
Get host name of the current machine, for use in error reporting.
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL using $wgServer (or one of its alternatives).
wfShellWikiCmd( $script, array $parameters=[], array $options=[])
Generate a shell-escaped command line string to run a MediaWiki cli script.
wfPercent( $nr, int $acc=2, bool $round=true)
wfSetVar(&$dest, $source, $force=false)
Sets dest to source and returns the original value of dest If source is NULL, it just returns the val...
wfShellExecWithStderr( $cmd, &$retval=null, $environ=[], $limits=[])
Execute a shell command, returning both stdout and stderr.
wfGetNull()
Get a platform-independent path to the null file, e.g.
wfRelativePath( $path, $from)
Generate a relative path name to the given file.
wfHttpError( $code, $label, $desc)
Provide a simple HTTP error.
wfUrlProtocols( $includeProtocolRelative=true)
Returns a partial regular expression of recognized URL protocols, e.g.
wfMessageFallback(... $keys)
This function accepts multiple message keys and returns a message instance for the first message whic...
wfMerge(string $old, string $mine, string $yours, ?string &$simplisticMergeAttempt, ?string &$mergeLeftovers=null)
wfMerge attempts to merge differences between three texts.
wfGetAllCallers( $limit=3)
Return a string consisting of callers in the stack.
wfArrayPlus2d(array $baseArray, array $newValues)
Merges two (possibly) 2 dimensional arrays into the target array ($baseArray).
wfLogWarning( $msg, $callerOffset=1, $level=E_USER_WARNING)
Send a warning as a PHP error and the debug log.
wfTransactionalTimeLimit()
Raise the request time limit to $wgTransactionalTimeLimit.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
wfObjectToArray( $objOrArray, $recursive=true)
Recursively converts the parameter (an object) to an array with the same data.
wfLoadSkin( $skin, $path=null)
Load a skin.
wfMsgReplaceArgs( $message, $args)
Replace message parameter keys on the given formatted output.
wfGetServerUrl( $proto)
Get the wiki's "server", i.e.
wfStringToBool( $val)
Convert string value to boolean, when the following are interpreted as true:
wfDebugBacktrace( $limit=0)
Safety wrapper for debug_backtrace().
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
wfStripIllegalFilenameChars( $name)
Replace all invalid characters with '-'.
wfFormatStackFrame( $frame)
Return a string representation of frame.
wfArrayToCgi( $array1, $array2=null, $prefix='')
This function takes one or two arrays as input, and returns a CGI-style string, e....
wfScript( $script='index')
Get the URL path to a MediaWiki entry point.
wfCgiToArray( $query)
This is the logical opposite of wfArrayToCgi(): it accepts a query string as its argument and returns...
wfMatchesDomainList( $url, $domains)
Check whether a given URL has a domain that occurs in a given set of domains.
wfIsInfinity( $str)
Determine input string is represents as infinity.
wfMkdirParents( $dir, $mode=null, $caller=null)
Make directory, and make all parent directories if they don't exist.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
wfLoadExtensions(array $exts)
Load multiple extensions at once.
wfBoolToStr( $value)
Convenience function converts boolean values into "true" or "false" (string) values.
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Logs a warning that a deprecated feature was used.
wfArrayInsertAfter(array $array, array $insert, $after)
Insert an array into another array after the specified key.
wfAssembleUrl( $urlParts)
This function will reassemble a URL parsed with wfParseURL.
wfResetOutputBuffers( $resetGzipEncoding=true)
Clear away any user-level output buffers, discarding contents.
global $wgRequest
Definition Setup.php:447
if(!defined( 'MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli' $wgOut
Definition Setup.php:568
array $params
The job parameters.
const MW_ENTRY_POINT
Definition api.php:35
Implements some public methods and some protected utility functions which are required by multiple ch...
Definition File.php:79
getHandler()
Get a MediaHandler instance for this file.
Definition File.php:1569
Debug toolbar.
Definition MWDebug.php:49
This class provides an implementation of the core hook interfaces, forwarding hook calls to HookConta...
Create PSR-3 logger objects.
Service locator for MediaWiki core services.
The Message class deals with fetching and processing of interface message into a variety of formats.
Definition Message.php:155
Load JSON files, and uses a Processor to extract information.
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form,...
Executes shell commands.
Definition Shell.php:46
Represents a title within MediaWiki.
Definition Title.php:78
Library for creating and parsing MW-style timestamps.
A service to expand, parse, and otherwise manipulate URLs.
Definition UrlUtils.php:16
expand(string $url, $defaultProto=PROTO_FALLBACK)
Expand a potentially local URL to a fully-qualified URL using $wgServer (or one of its alternatives).
Definition UrlUtils.php:124
This class is used to hold the location and do limited manipulation of files stored temporarily (this...
Base class for all file backend classes (including multi-write backends).
Value object representing a message parameter that consists of a list of values.
Type definition for expiry timestamps.
Definition ExpiryDef.php:17
$wgScript
Config variable stub for the Script setting, for use by phpdoc and IDEs.
$wgInternalServer
Config variable stub for the InternalServer setting, for use by phpdoc and IDEs.
$wgThumbLimits
Config variable stub for the ThumbLimits setting, for use by phpdoc and IDEs.
$wgDebugLogPrefix
Config variable stub for the DebugLogPrefix setting, for use by phpdoc and IDEs.
$wgPhpCli
Config variable stub for the PhpCli setting, for use by phpdoc and IDEs.
$wgOverrideHostname
Config variable stub for the OverrideHostname setting, for use by phpdoc and IDEs.
$wgImageLimits
Config variable stub for the ImageLimits setting, for use by phpdoc and IDEs.
$wgTmpDirectory
Config variable stub for the TmpDirectory setting, for use by phpdoc and IDEs.
$wgStyleDirectory
Config variable stub for the StyleDirectory setting, for use by phpdoc and IDEs.
$wgTransactionalTimeLimit
Config variable stub for the TransactionalTimeLimit setting, for use by phpdoc and IDEs.
$wgIllegalFileChars
Config variable stub for the IllegalFileChars setting, for use by phpdoc and IDEs.
$wgDirectoryMode
Config variable stub for the DirectoryMode setting, for use by phpdoc and IDEs.
$wgDiff3
Config variable stub for the Diff3 setting, for use by phpdoc and IDEs.
$wgUrlProtocols
Config variable stub for the UrlProtocols setting, for use by phpdoc and IDEs.
$wgResponsiveImages
Config variable stub for the ResponsiveImages setting, for use by phpdoc and IDEs.
$wgDebugRawPage
Config variable stub for the DebugRawPage setting, for use by phpdoc and IDEs.
$wgEnableMagicLinks
Config variable stub for the EnableMagicLinks setting, for use by phpdoc and IDEs.
$wgScriptPath
Config variable stub for the ScriptPath setting, for use by phpdoc and IDEs.
$wgExtensionDirectory
Config variable stub for the ExtensionDirectory setting, for use by phpdoc and IDEs.
$wgLoadScript
Config variable stub for the LoadScript setting, for use by phpdoc and IDEs.
$wgCanonicalServer
Config variable stub for the CanonicalServer setting, for use by phpdoc and IDEs.
$wgServer
Config variable stub for the Server setting, for use by phpdoc and IDEs.
$wgHttpsPort
Config variable stub for the HttpsPort setting, for use by phpdoc and IDEs.
$source