客服消息内容结构请参考微信开发文档

发送客服文本消息

操作步骤

#1、获取微信SDK操作对象

  1. $wechatObj = get_wechat_obj();

#2、组织要发送的文本内容

  1. $customData = array(
  2. 'touser' => $openid,
  3. 'msgtype' => 'text',
  4. 'text' => array(
  5. 'content' => '这是一条客服文本消息'
  6. )
  7. );

#3、发送文本消息

  1. $res = $wechatObj->sendCustomMessage($customData);

你可以打印出$res来获取客服消息发送结果。

代码示例

  1. // 发送客服消息
  2. $customData = array(
  3. 'touser' => $openid,
  4. 'msgtype' => 'text',
  5. 'text' => array(
  6. 'content' => '这是一条客服文本消息'
  7. )
  8. );
  9. $res = $wechatObj->sendCustomMessage($customData);
  10. var_dump($res);

结果示例:

发送客服消息 - 图1