我有一个变量$doctype
是一个数组:
$doctype = array(
'news' => ('news'),
'documents' => ('documents'),
'forms' => ('forms'),
'other' => ('other'),
);
用作另一个数组的选项:
$form['doc_type'] = array(
'#title' => 'Document Type',
'#type' => 'radios',
'#options' => $doctype,
'#size' => '30',
'#required' => TRUE,
'#default_value' => $doctype['news'],
现在我正在尝试将当前值传递给另一个函数
我试过了:
form($form_state, &$doctype) {
但它显示为一个缺失的论点
我想通过参考传递它,而不是作为回报(已经被占用/不想解决它)
任何帮助表示赞赏