WordPress gzinflate():调试时出现数据错误
使用“调试栏”插件调试我的插件时,我收到以下警告。
WARNING: wp-includesclass-http.php:1669 - gzinflate(): data error
我在插件中使用wp_remote_post()
并导致错误。
我该如何解决这个问题? 任何线索?
提前致谢!
你也可以使用参数'decompress' => false
,WordPress会为你设置正确的标题值。 喜欢这个:
wp_remote_post(
$url,
array( 'decompress' => false )
);
链接地址: http://www.djcxy.com/p/73851.html