我正在尝试使用drupal_goto函数,但它会重定向到错误的网址
这是我的代码
$dis='user/' . $account->uid . '/edit/?id=6356928';
drupal_goto($dis);
ID
的问题任何建议??
答案 0 :(得分:4)
drupal_goto使用与url()相同的$options
设置。
尝试执行以下操作
drupal_goto("user/" . $account->uid . "/edit", array(
'query' => array(
'id' => '6356928',
),
));