我想在我正在构建的mediawiki扩展中使用$wgScriptPath
变量。每当我访问变量时,我都会收到错误“Undefined variable:wgScriptPath”
有没有人知道在mediawiki扩展中访问这些类型变量的正确方法?
提前致谢!
答案 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
}