form.inc drupal 7中不支持的操作数类型

时间:2016-03-28 06:59:03

标签: php drupal-7

enter image description here

enter image description here

点击“我的问候语”页面,我收到以下错误:

  

致命错误:第1814行D:\ xampp \ htdocs \ drupal \ includes \ form.inc中不支持的操作数类型

任何人都可以帮我解决这个问题。

2 个答案:

答案 0 :(得分:0)

我认为你需要在你的hello_showhelloForm()函数中传递参数。
像这样 hello_showhelloForm($ form,& $ form_state){}

答案 1 :(得分:0)

你的功能Hello_showHello_form()应该是这样的

function Hello_showHelloform(){
$form = array();
$form['name'] = array(
'#type' => 'textfield',
'#title' => t('Enter your Name'),
);
retrun $form;
}

在输入之前需要#。