2021-03-18 14:56:35 +08:00
|
|
|
|
<?php /** @noinspection PhpUnused */
|
|
|
|
|
|
|
|
|
|
|
|
/** @noinspection PhpMissingReturnTypeInspection */
|
2020-03-02 16:14:20 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace ZM\API;
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-08-31 10:11:06 +08:00
|
|
|
|
use ZM\Console\Console;
|
2021-03-15 02:54:16 +08:00
|
|
|
|
use ZM\Entity\CQObject;
|
2018-10-29 11:47:58 +08:00
|
|
|
|
|
|
|
|
|
|
class CQ
|
|
|
|
|
|
{
|
|
|
|
|
|
/**
|
|
|
|
|
|
* at一下QQ用户(仅在QQ群支持at全体)
|
|
|
|
|
|
* @param $qq
|
|
|
|
|
|
* @return string
|
|
|
|
|
|
*/
|
|
|
|
|
|
public static function at($qq) {
|
|
|
|
|
|
if (is_numeric($qq) || $qq === "all") {
|
|
|
|
|
|
return "[CQ:at,qq=" . $qq . "]";
|
|
|
|
|
|
}
|
2021-06-16 00:17:30 +08:00
|
|
|
|
Console::warning(zm_internal_errcode("E00035") . "传入的QQ号码($qq)错误!");
|
2018-10-29 11:47:58 +08:00
|
|
|
|
return " ";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 发送QQ原生表情
|
|
|
|
|
|
* @param $id
|
|
|
|
|
|
* @return string
|
|
|
|
|
|
*/
|
|
|
|
|
|
public static function face($id) {
|
|
|
|
|
|
if (is_numeric($id)) {
|
|
|
|
|
|
return "[CQ:face,id=" . $id . "]";
|
|
|
|
|
|
}
|
2021-06-16 00:17:30 +08:00
|
|
|
|
Console::warning(zm_internal_errcode("E00035") . "传入的face id($id)错误!");
|
2018-10-29 11:47:58 +08:00
|
|
|
|
return " ";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-12-31 13:56:59 +08:00
|
|
|
|
* 发送图片
|
|
|
|
|
|
* @param $file
|
|
|
|
|
|
* @param bool $cache
|
|
|
|
|
|
* @param bool $flash
|
|
|
|
|
|
* @param bool $proxy
|
|
|
|
|
|
* @param int $timeout
|
2018-10-29 11:47:58 +08:00
|
|
|
|
* @return string
|
|
|
|
|
|
*/
|
2021-06-16 00:17:30 +08:00
|
|
|
|
public static function image($file, bool $cache = true, bool $flash = false, bool $proxy = true, int $timeout = -1) {
|
2020-12-31 13:56:59 +08:00
|
|
|
|
return
|
2021-02-20 16:57:19 +08:00
|
|
|
|
"[CQ:image,file=" . self::encode($file, true) .
|
2020-12-31 13:56:59 +08:00
|
|
|
|
(!$cache ? ",cache=0" : "") .
|
|
|
|
|
|
($flash ? ",type=flash" : "") .
|
|
|
|
|
|
(!$proxy ? ",proxy=false" : "") .
|
2021-06-16 00:17:30 +08:00
|
|
|
|
($timeout != -1 ? (",timeout=" . $timeout) : "") .
|
2020-12-31 13:56:59 +08:00
|
|
|
|
"]";
|
2018-10-29 11:47:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-12-31 13:56:59 +08:00
|
|
|
|
* 发送语音
|
2018-10-29 11:47:58 +08:00
|
|
|
|
* @param $file
|
2020-12-31 13:56:59 +08:00
|
|
|
|
* @param bool $magic
|
2018-10-29 11:47:58 +08:00
|
|
|
|
* @param bool $cache
|
2020-12-31 13:56:59 +08:00
|
|
|
|
* @param bool $proxy
|
|
|
|
|
|
* @param int $timeout
|
2018-10-29 11:47:58 +08:00
|
|
|
|
* @return string
|
|
|
|
|
|
*/
|
2021-06-16 00:17:30 +08:00
|
|
|
|
public static function record($file, bool $magic = false, bool $cache = true, bool $proxy = true, int $timeout = -1) {
|
2020-12-31 13:56:59 +08:00
|
|
|
|
return
|
2021-02-20 16:57:19 +08:00
|
|
|
|
"[CQ:record,file=" . self::encode($file, true) .
|
2020-12-31 13:56:59 +08:00
|
|
|
|
(!$cache ? ",cache=0" : "") .
|
|
|
|
|
|
($magic ? ",magic=1" : "") .
|
|
|
|
|
|
(!$proxy ? ",proxy=false" : "") .
|
2021-06-16 00:17:30 +08:00
|
|
|
|
($timeout != -1 ? (",timeout=" . $timeout) : "") .
|
2020-12-31 13:56:59 +08:00
|
|
|
|
"]";
|
2018-10-29 11:47:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-12-31 13:56:59 +08:00
|
|
|
|
* 发送短视频
|
2018-10-29 11:47:58 +08:00
|
|
|
|
* @param $file
|
|
|
|
|
|
* @param bool $cache
|
2020-12-31 13:56:59 +08:00
|
|
|
|
* @param bool $proxy
|
|
|
|
|
|
* @param int $timeout
|
2018-10-29 11:47:58 +08:00
|
|
|
|
* @return string
|
|
|
|
|
|
*/
|
2021-06-16 00:17:30 +08:00
|
|
|
|
public static function video($file, bool $cache = true, bool $proxy = true, int $timeout = -1) {
|
2020-12-31 13:56:59 +08:00
|
|
|
|
return
|
2021-02-20 16:57:19 +08:00
|
|
|
|
"[CQ:video,file=" . self::encode($file, true) .
|
2020-12-31 13:56:59 +08:00
|
|
|
|
(!$cache ? ",cache=0" : "") .
|
|
|
|
|
|
(!$proxy ? ",proxy=false" : "") .
|
2021-02-20 16:57:19 +08:00
|
|
|
|
($timeout != -1 ? (",timeout=" . intval($timeout)) : "") .
|
2020-12-31 13:56:59 +08:00
|
|
|
|
"]";
|
2018-10-29 11:47:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 发送投掷骰子(只能在单条回复中单独使用)
|
|
|
|
|
|
* @return string
|
|
|
|
|
|
*/
|
|
|
|
|
|
public static function rps() {
|
|
|
|
|
|
return "[CQ:rps]";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 发送掷骰子表情(只能在单条回复中单独使用)
|
|
|
|
|
|
* @return string
|
|
|
|
|
|
*/
|
|
|
|
|
|
public static function dice() {
|
|
|
|
|
|
return "[CQ:dice]";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 戳一戳(原窗口抖动,仅支持好友消息使用)
|
|
|
|
|
|
* @return string
|
|
|
|
|
|
*/
|
|
|
|
|
|
public static function shake() {
|
|
|
|
|
|
return "[CQ:shake]";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-12-31 13:56:59 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 发送新的戳一戳
|
|
|
|
|
|
* @param $type
|
|
|
|
|
|
* @param $id
|
|
|
|
|
|
* @param string $name
|
|
|
|
|
|
* @return string
|
|
|
|
|
|
*/
|
2021-06-16 00:17:30 +08:00
|
|
|
|
public static function poke($type, $id, string $name = "") {
|
|
|
|
|
|
return "[CQ:poke,type=$type,id=$id" . ($name != "" ? (",name=" . self::encode($name, true)) : "") . "]";
|
2020-12-31 13:56:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 发送匿名消息
|
|
|
|
|
|
* @param int $ignore
|
|
|
|
|
|
* @return string
|
|
|
|
|
|
*/
|
2021-06-16 00:17:30 +08:00
|
|
|
|
public static function anonymous(int $ignore = 1) {
|
2021-02-09 17:09:09 +08:00
|
|
|
|
return "[CQ:anonymous" . ($ignore != 1 ? ",ignore=0" : "") . "]";
|
2020-12-31 13:56:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 发送链接分享(只能在单条回复中单独使用)
|
|
|
|
|
|
* @param $url
|
|
|
|
|
|
* @param $title
|
|
|
|
|
|
* @param null $content
|
|
|
|
|
|
* @param null $image
|
|
|
|
|
|
* @return string
|
|
|
|
|
|
*/
|
|
|
|
|
|
public static function share($url, $title, $content = null, $image = null) {
|
|
|
|
|
|
if ($content === null) $c = "";
|
2021-02-20 16:57:19 +08:00
|
|
|
|
else $c = ",content=" . self::encode($content, true);
|
2020-12-31 13:56:59 +08:00
|
|
|
|
if ($image === null) $i = "";
|
2021-02-20 16:57:19 +08:00
|
|
|
|
else $i = ",image=" . self::encode($image, true);
|
|
|
|
|
|
return "[CQ:share,url=" . self::encode($url, true) . ",title=" . self::encode($title, true) . $c . $i . "]";
|
2020-12-31 13:56:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 发送好友或群推荐名片
|
|
|
|
|
|
* @param $type
|
|
|
|
|
|
* @param $id
|
|
|
|
|
|
* @return string
|
|
|
|
|
|
*/
|
|
|
|
|
|
public static function contact($type, $id) {
|
|
|
|
|
|
return "[CQ:contact,type=$type,id=$id]";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-02-20 16:57:19 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 发送位置
|
|
|
|
|
|
* @param $lat
|
|
|
|
|
|
* @param $lon
|
|
|
|
|
|
* @param string $title
|
|
|
|
|
|
* @param string $content
|
|
|
|
|
|
* @return string
|
|
|
|
|
|
*/
|
2021-06-16 00:17:30 +08:00
|
|
|
|
public static function location($lat, $lon, string $title = "", string $content = "") {
|
2021-02-20 16:57:19 +08:00
|
|
|
|
return "[CQ:location" .
|
2021-06-16 00:17:30 +08:00
|
|
|
|
",lat=" . self::encode($lat, true) .
|
|
|
|
|
|
",lon=" . self::encode($lon, true) .
|
|
|
|
|
|
($title != "" ? (",title=" . self::encode($title, true)) : "") .
|
|
|
|
|
|
($content != "" ? (",content=" . self::encode($content, true)) : "") .
|
2021-02-20 16:57:19 +08:00
|
|
|
|
"]";
|
2020-12-31 13:56:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2018-10-29 11:47:58 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 发送音乐分享(只能在单条回复中单独使用)
|
|
|
|
|
|
* qq、163、xiami为内置分享,需要先通过搜索功能获取id后使用
|
|
|
|
|
|
* custom为自定义分享
|
|
|
|
|
|
* 当为自定义分享时:
|
|
|
|
|
|
* $id_or_url 为音乐卡片点进去打开的链接(一般是音乐介绍界面啦什么的)
|
|
|
|
|
|
* $audio 为音乐(如mp3文件)的HTTP链接地址(不可为空)
|
|
|
|
|
|
* $title 为音乐卡片的标题,建议12字以内(不可为空)
|
|
|
|
|
|
* $content 为音乐卡片的简介(可忽略)
|
|
|
|
|
|
* $image 为音乐卡片的图片链接地址(可忽略)
|
|
|
|
|
|
* @param $type
|
|
|
|
|
|
* @param $id_or_url
|
2020-12-31 13:56:59 +08:00
|
|
|
|
* @param null $audio
|
|
|
|
|
|
* @param null $title
|
|
|
|
|
|
* @param null $content
|
|
|
|
|
|
* @param null $image
|
2018-10-29 11:47:58 +08:00
|
|
|
|
* @return string
|
|
|
|
|
|
*/
|
|
|
|
|
|
public static function music($type, $id_or_url, $audio = null, $title = null, $content = null, $image = null) {
|
|
|
|
|
|
switch ($type) {
|
|
|
|
|
|
case "qq":
|
|
|
|
|
|
case "163":
|
|
|
|
|
|
case "xiami":
|
2020-03-02 16:14:20 +08:00
|
|
|
|
return "[CQ:music,type=$type,id=$id_or_url]";
|
2018-10-29 11:47:58 +08:00
|
|
|
|
case "custom":
|
|
|
|
|
|
if ($title === null || $audio === null) {
|
2021-06-16 00:17:30 +08:00
|
|
|
|
Console::warning(zm_internal_errcode("E00035") . "传入CQ码实例的标题和音频链接不能为空!");
|
2018-10-29 11:47:58 +08:00
|
|
|
|
return " ";
|
|
|
|
|
|
}
|
|
|
|
|
|
if ($content === null) $c = "";
|
2021-02-20 16:57:19 +08:00
|
|
|
|
else $c = ",content=" . self::encode($content, true);
|
2018-10-29 11:47:58 +08:00
|
|
|
|
if ($image === null) $i = "";
|
2021-02-20 16:57:19 +08:00
|
|
|
|
else $i = ",image=" . self::encode($image, true);
|
|
|
|
|
|
return "[CQ:music,type=custom,url=" .
|
|
|
|
|
|
self::encode($id_or_url, true) .
|
|
|
|
|
|
",audio=" . self::encode($audio, true) . ",title=" . self::encode($title, true) . $c . $i .
|
|
|
|
|
|
"]";
|
2018-10-29 11:47:58 +08:00
|
|
|
|
default:
|
2021-06-16 00:17:30 +08:00
|
|
|
|
Console::warning(zm_internal_errcode("E00035") . "传入的music type($type)错误!");
|
2018-10-29 11:47:58 +08:00
|
|
|
|
return " ";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-12-31 13:56:59 +08:00
|
|
|
|
public static function forward($id) {
|
2021-06-16 00:17:30 +08:00
|
|
|
|
return "[CQ:forward,id=".self::encode($id)."]";
|
2020-12-31 13:56:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static function node($user_id, $nickname, $content) {
|
2021-06-16 00:17:30 +08:00
|
|
|
|
return "[CQ:node,user_id=$user_id,nickname=" . self::encode($nickname, true) . ",content=" . self::encode($content, true) . "]";
|
2021-02-20 16:57:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static function xml($data) {
|
|
|
|
|
|
return "[CQ:xml,data=" . self::encode($data, true) . "]";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static function json($data, $resid = 0) {
|
|
|
|
|
|
return "[CQ:json,data=" . self::encode($data, true) . ",resid=" . intval($resid) . "]";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static function _custom(string $type_name, $params) {
|
|
|
|
|
|
$code = "[CQ:" . $type_name;
|
|
|
|
|
|
foreach ($params as $k => $v) {
|
|
|
|
|
|
$code .= "," . $k . "=" . self::escape($v, true);
|
|
|
|
|
|
}
|
|
|
|
|
|
$code .= "]";
|
|
|
|
|
|
return $code;
|
2018-10-29 11:47:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 反转义字符串中的CQ码敏感符号
|
2021-02-20 16:57:19 +08:00
|
|
|
|
* @param $msg
|
|
|
|
|
|
* @param bool $is_content
|
2018-10-29 11:47:58 +08:00
|
|
|
|
* @return mixed
|
|
|
|
|
|
*/
|
2021-02-20 16:57:19 +08:00
|
|
|
|
public static function decode($msg, $is_content = false) {
|
|
|
|
|
|
$msg = str_replace(["&", "[", "]"], ["&", "[", "]"], $msg);
|
|
|
|
|
|
if ($is_content) $msg = str_replace(",", ",", $msg);
|
|
|
|
|
|
return $msg;
|
2018-10-29 11:47:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static function replace($str) {
|
|
|
|
|
|
$str = str_replace("{{", "[", $str);
|
|
|
|
|
|
$str = str_replace("}}", "]", $str);
|
|
|
|
|
|
return $str;
|
|
|
|
|
|
}
|
2018-11-28 13:26:18 +08:00
|
|
|
|
|
2020-03-02 16:14:20 +08:00
|
|
|
|
/**
|
2021-02-20 16:57:19 +08:00
|
|
|
|
* 转义CQ码的特殊字符,同encode
|
2020-03-02 16:14:20 +08:00
|
|
|
|
* @param $msg
|
2021-02-20 16:57:19 +08:00
|
|
|
|
* @param bool $is_content
|
2020-03-02 16:14:20 +08:00
|
|
|
|
* @return mixed
|
|
|
|
|
|
*/
|
2021-02-20 16:57:19 +08:00
|
|
|
|
public static function escape($msg, $is_content = false) {
|
|
|
|
|
|
$msg = str_replace(["&", "[", "]"], ["&", "[", "]"], $msg);
|
|
|
|
|
|
if ($is_content) $msg = str_replace(",", ",", $msg);
|
2020-03-02 16:14:20 +08:00
|
|
|
|
return $msg;
|
|
|
|
|
|
}
|
2018-11-28 13:26:18 +08:00
|
|
|
|
|
2021-02-20 16:57:19 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 转义CQ码的特殊字符
|
|
|
|
|
|
* @param $msg
|
|
|
|
|
|
* @param false $is_content
|
|
|
|
|
|
* @return mixed
|
|
|
|
|
|
*/
|
|
|
|
|
|
public static function encode($msg, $is_content = false) {
|
|
|
|
|
|
$msg = str_replace(["&", "[", "]"], ["&", "[", "]"], $msg);
|
|
|
|
|
|
if ($is_content) $msg = str_replace(",", ",", $msg);
|
|
|
|
|
|
return $msg;
|
2020-05-06 15:01:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-02-20 16:57:19 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 移除消息中所有的CQ码并返回移除CQ码后的消息
|
|
|
|
|
|
* @param $msg
|
|
|
|
|
|
* @return string
|
|
|
|
|
|
*/
|
2020-03-02 16:14:20 +08:00
|
|
|
|
public static function removeCQ($msg) {
|
2021-02-20 16:57:19 +08:00
|
|
|
|
$final = "";
|
|
|
|
|
|
$last_end = 0;
|
2021-06-16 00:17:30 +08:00
|
|
|
|
foreach (self::getAllCQ($msg) as $v) {
|
2021-02-20 16:57:19 +08:00
|
|
|
|
$final .= mb_substr($msg, $last_end, $v["start"] - $last_end);
|
|
|
|
|
|
$last_end = $v["end"] + 1;
|
2018-11-28 13:26:18 +08:00
|
|
|
|
}
|
2021-02-20 16:57:19 +08:00
|
|
|
|
$final .= mb_substr($msg, $last_end);
|
|
|
|
|
|
return $final;
|
2018-11-28 13:26:18 +08:00
|
|
|
|
}
|
2020-05-08 16:37:38 +08:00
|
|
|
|
|
2021-02-20 16:57:19 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 获取消息中第一个CQ码
|
|
|
|
|
|
* @param $msg
|
2021-03-15 02:54:16 +08:00
|
|
|
|
* @param bool $is_object
|
|
|
|
|
|
* @return array|CQObject|null
|
2021-02-20 16:57:19 +08:00
|
|
|
|
*/
|
2021-03-15 02:54:16 +08:00
|
|
|
|
public static function getCQ($msg, $is_object = false) {
|
2021-02-20 16:57:19 +08:00
|
|
|
|
if (($head = mb_strpos($msg, "[CQ:")) !== false) {
|
|
|
|
|
|
$key_offset = mb_substr($msg, $head);
|
|
|
|
|
|
$close = mb_strpos($key_offset, "]");
|
|
|
|
|
|
if ($close === false) return null;
|
|
|
|
|
|
$content = mb_substr($msg, $head + 4, $close + $head - mb_strlen($msg));
|
|
|
|
|
|
$exp = explode(",", $content);
|
|
|
|
|
|
$cq["type"] = array_shift($exp);
|
2021-06-16 00:17:30 +08:00
|
|
|
|
foreach ($exp as $v) {
|
2021-02-20 16:57:19 +08:00
|
|
|
|
$ss = explode("=", $v);
|
|
|
|
|
|
$sk = array_shift($ss);
|
|
|
|
|
|
$cq["params"][$sk] = self::decode(implode("=", $ss), true);
|
|
|
|
|
|
}
|
|
|
|
|
|
$cq["start"] = $head;
|
|
|
|
|
|
$cq["end"] = $close + $head;
|
2021-03-15 02:54:16 +08:00
|
|
|
|
return !$is_object ? $cq : CQObject::fromArray($cq);
|
2021-02-20 16:57:19 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 获取消息中所有的CQ码
|
|
|
|
|
|
* @param $msg
|
2021-03-15 02:54:16 +08:00
|
|
|
|
* @param bool $is_object
|
|
|
|
|
|
* @return array|CQObject[]
|
2021-02-20 16:57:19 +08:00
|
|
|
|
*/
|
2021-03-15 02:54:16 +08:00
|
|
|
|
public static function getAllCQ($msg, $is_object = false) {
|
2021-02-20 16:57:19 +08:00
|
|
|
|
$cqs = [];
|
|
|
|
|
|
$offset = 0;
|
|
|
|
|
|
while (($head = mb_strpos(($submsg = mb_substr($msg, $offset)), "[CQ:")) !== false) {
|
|
|
|
|
|
$key_offset = mb_substr($submsg, $head);
|
|
|
|
|
|
$tmpmsg = mb_strpos($key_offset, "]");
|
|
|
|
|
|
if ($tmpmsg === false) break; // 没闭合,不算CQ码
|
|
|
|
|
|
$content = mb_substr($submsg, $head + 4, $tmpmsg + $head - mb_strlen($submsg));
|
|
|
|
|
|
$exp = explode(",", $content);
|
|
|
|
|
|
$cq = [];
|
|
|
|
|
|
$cq["type"] = array_shift($exp);
|
2021-06-16 00:17:30 +08:00
|
|
|
|
foreach ($exp as $v) {
|
2021-02-20 16:57:19 +08:00
|
|
|
|
$ss = explode("=", $v);
|
|
|
|
|
|
$sk = array_shift($ss);
|
|
|
|
|
|
$cq["params"][$sk] = self::decode(implode("=", $ss), true);
|
|
|
|
|
|
}
|
|
|
|
|
|
$cq["start"] = $offset + $head;
|
|
|
|
|
|
$cq["end"] = $offset + $tmpmsg + $head;
|
|
|
|
|
|
$offset += $tmpmsg + 1;
|
2021-03-15 02:54:16 +08:00
|
|
|
|
$cqs[] = (!$is_object ? $cq : CQObject::fromArray($cq));
|
2020-05-08 16:37:38 +08:00
|
|
|
|
}
|
2021-02-20 16:57:19 +08:00
|
|
|
|
return $cqs;
|
2020-05-08 16:37:38 +08:00
|
|
|
|
}
|
2020-04-29 15:29:56 +08:00
|
|
|
|
}
|