模块开发中,遇到一个问题。输出页面没有页面类型。
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 版本
就是微信模块开发中,认证的返回结果不对
就是微信模块开发中,认证的返回结果不对。返回结果的编码类型没有。
就是微信模块开发中,认证的返回结果不对
就是微信模块开发中,认证的返回结果不对。返回结果的编码类型没有。