似乎无法完成这项工作。
我想让下面的数组可用于第二个函数,但它总是空的
主要代码是这样的:
function GenerateSitemap($params = array()) {
$array = extract(shortcode_atts(array(
'title' => 'Site map',
'id' => 'sitemap',
'depth' => 2
), $params));
global $array;
}
function secondfunction()
{
global $array;
print $title;
// this function throws an error and can't access the $title key from the first function
}
GenerateSitemap()
secondfunction()
我想在第二个函数中使用title、id或depth KEYS。他们只是空出来并抛出错误