在处理微信48小时post和send a preview的时候发现a标签的相关问题,文本在mq中进行urlencode的时候可能会对双引号进行错误的加码,这时需要对双引号进行转义。包括尖括号可能也需要进行替换等。
$text = str_replace("<","<",$text);
$text = str_replace(">",">",$text);
$text = urlencode(Helper::encodeSpecialChar($text));
public static function encodeSpecialChar($string)
{
$specialChar = array(
'"' => '\"',
);
return str_replace(array_keys($specialChar), array_values($specialChar), $string);
}