Manual:$wgVersion

From mediawiki.org
This page is a translated version of the page Manual:$wgVersion and the translation is 53% complete.
Outdated translations are marked like this.
一般的な設定: $wgVersion
MediaWiki のバージョン番号。
導入されたバージョン:1.2.0
廃止予定になったバージョン:1.35.0 (Gerrit change 481950; git #a5d5ea82)
除去されたバージョン:使用中
許容される値:(文字列)
既定値:MediaWiki の現在のバージョン - これを変更してはいけません!

詳細

MediaWiki の現在のバージョンです (例: "1.41.1")。 このオプションを設定してはいけません。これは内部で使用されます。

MW_VERSION

MediaWiki バージョン:
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.

コード例

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 ) {
    # MediaWiki 1.18 以前の場合の処理
} else {
    # MediaWiki 1.19 以降の場合の処理
}
MediaWiki バージョン:
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.

関連項目