1

$wgScriptPath作成中の mediawiki 拡張機能内で変数を使用したいと考えています。変数にアクセスするたびに、「未定義の変数: wgScriptPath」というエラーが表示されます。
mediawiki 拡張機能内のこれらのタイプの変数にアクセスする正しい方法を知っている人はいますか?

前もって感謝します!

4

1 に答える 1

0

グローバルとして宣言しましたか?

function foo() {
    echo $wgScriptPath; // this will echo the local variable in the 
                        // function's scope, which of course does not exist
}

function foo() {
    global $wgScripPath;
    echo $wgScriptPath; // this will echo the global variable
}
于 2012-08-19T21:34:22.337 に答える