Handbuch:$wgVersion
Deprecated: This feature is deprecated and should no longer be used, however it is still available for reasons of backwards compatibility . |
General Settings: $wgVersion | |
---|---|
MediaWiki-Versionsnummer. |
|
Eingeführt in Version: | 1.2.0 |
Veraltet in Version: | 1.35.0 (Gerrit change 481950; git #a5d5ea82) |
Entfernt in Version: | weiterhin vorhanden |
Erlaubte Werte: | (Zeichenkette) |
Standardwert: | Aktuelle MediaWiki-Version - Sie sollten dies nicht ändern! |
Andere Einstellungen: Alphabetisch | Nach Funktion |
Details
Die aktuelle Version von MediaWiki (z. B. "1.42.3"). Sie sollten diese Variable nicht einstellen müssen, sie wird intern verwendet.
MW_VERSION
MediaWiki Version: | ≥ 1.35 |
Starting with MediaWiki 1.35, $wgVersion
is deprecated, and replaced with the MW_VERSION
constant.
It is also available in MediaWiki 1.31.7, 1.33.3 and 1.34.1, though this should not be relied on as its presence is required for some release tools.
$wgVersion
will continue to function the same as before in those versions.
Beispielcode
If you're implementing a new feature that only works in MediaWiki 1.19 or later, but you want to maintain backwards compatibility, you could use a test such as the following:
global $wgVersion;
$oldVersion = version_compare( $wgVersion, '1.18', '<=' );
if ( $oldVersion ) {
# Do stuff for MediaWiki 1.18 and older
} else {
# Do stuff for MediaWiki 1.19+
}
MediaWiki Version: | ≥ 1.35 |
$oldVersion = version_compare( MW_VERSION, '1.39', '<' );
if ( $oldVersion ) {
# Do stuff for MediaWiki 1.35 - 1.38
} else {
# Do stuff for MediaWiki 1.39+
}
However, it is typically recommended that you use feature detection to see whether the method or class you wish to use is available instead of depending upon raw version strings.
See also
- Special:Version – View the version number of a MediaWiki installation (plus much more information) from the web interface.
- Manual:Upgrading
- Version
- MediaWiki configuration settings/de-formal
- MediaWiki configuration settings introduced in version 1.2.0/de-formal
- MediaWiki configuration settings deprecated in version 1.35.0/de-formal
- MediaWiki configuration settings still in use/de-formal
- MediaWiki deprecated or obsolete features/de-formal
- Variables/de-formal