在扩展名中使用$ wgScriptPath

时间:2012-08-18 17:16:04

标签: php mediawiki

我想在我正在构建的mediawiki扩展中使用$wgScriptPath变量。每当我访问变量时,我都会收到错误“Undefined variable:wgScriptPath” 有没有人知道在mediawiki扩展中访问这些类型变量的正确方法?

提前致谢!

1 个答案:

答案 0 :(得分: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
}