Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$wgScriptPath作成中の mediawiki 拡張機能内で変数を使用したいと考えています。変数にアクセスするたびに、「未定義の変数: wgScriptPath」というエラーが表示されます。 mediawiki 拡張機能内のこれらのタイプの変数にアクセスする正しい方法を知っている人はいますか?
$wgScriptPath
前もって感謝します!
グローバルとして宣言しましたか?
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 }