跳转到主要内容
emal30 提交于 11 December 2015

模块开发中,遇到一个问题。输出页面没有页面类型。

function weixin_api_callback() {   $query = drupal_get_query_parameters();   if (checkSignature($query)) {     //首次调用验证成为开发者     if (isset($query['echostr'])) {       drupal_add_http_header('Content-Type', 'text/html; charset=utf-8');       echo '<pre>'.$query['echostr'];       exit;     }     //回应信息     responseMsg();   } }

需要在:<head>中添加<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

drupal_add_http_header无效

Drupal 版本