我试图在我的模块中保存一个全局变量并从另一个函数访问它。我不想将它存储在 $_SESSION 中,因为我需要这个变量应用程序范围。以下是我正在尝试的代码,但它根本不起作用。
function popmeup_menu() {
$items['example/feed'] = array(
'title' => 'Example RSS feed',
'page callback' => 'popmeup_page',
'access arguments' => array('access content'),
'type' => MENU_CALLBACK
);
return $items;
}
function popmeup_page() {
print variable_get($xmlt, "");
}
function popmeup_comment_insert($comment) {
variable_set($xmlt,"xmltoreturn");
}