长沙中小企业做网站写网站的教程
news/
2025/10/6 15:06:04/
文章来源:
长沙中小企业做网站,写网站的教程,网页制作源码免费,wordpress屏蔽谷歌PHP CURL内存泄露的解决方法curl配置平淡无奇#xff0c;长时间运行发现一个严重问题#xff0c;内存泄露#xff01;不论用单线程和多线程都无法避免#xff01;是curl访问https站点的时候有bug#xff01;内存泄露可以通过linux的top命令发现#xff0c;使用php函数mem…PHP CURL内存泄露的解决方法curl配置平淡无奇长时间运行发现一个严重问题内存泄露不论用单线程和多线程都无法避免是curl访问https站点的时候有bug内存泄露可以通过linux的top命令发现使用php函数memory_get_usage()不会发现。经过反复调试找到解决办法curl配置添加如下几项解决问题复制代码 代码如下:[CURLOPT_HTTPPROXYTUNNEL] true;[CURLOPT_SSL_VERIFYPEER] false;[CURLOPT_SSL_VERIFYHOST] false;CURLOPT_HTTPPROXYTUNNEL具体说明stackoverflow上有直接贴原文Without CURLOPT_HTTPPROXYTUNNELWithout CURLOPT_HTTPPROXYTUNNEL : You just use the proxy address/port as a destination of your HTTP request. The proxy will read the HTTP headers of your query, forward your request to the destination (with your HTTP headers) and then write the response to you.Example steps :1)HTTP GET / sent to 1.1.1.1 (proxy)2)1.1.1.1 receive request and parse header for getting the final destination of your HTTP request.3)1.1.1.1 forward your query and headers to www.site.com (destination in request headers).4)1.1.1.1 write back to you the response receive from www.site.comWith CURLOPT_HTTPPROXYTUNNELWith CURLOPT_HTTPPROXYTUNNEL : You ask the proxy to open a direct binary connection (like HTTPS, called a TCP Tunnel) directly to your destination by doing a CONNECT HTTP request. When the tunnel is ok, the proxy write you back a HTTP/1.1 200 Connection established. When it received your browser start to query the destination directly : The proxy does not parse HTTP headers and theoretically does not read tunnel datas, it just forward it, thats why it is called a tunnel !Example steps :1)HTTP CONNECT sent to 1.1.1.12)1.1.1.1 receive HTTP CONNECT and get the ip/port of your final destination (header field of HTTP CONNECT).3)1.1.1.1 open a TCP Socket by doing a TCP handshake to your destination 2.22.63.73:80 (ip/port of www.site.com).4)1.1.1.1 Make a tunnel by piping your TCP Socket to the TCP Socket opened to 2.22.63.73:80and then write you back HTTP/1.1 200 Connection established witch means that your client can now make your query throw the TCP Tunnel (TCP datas received will be transmited directly to server and vice versa).【PHP CURL内存泄露的解决方法】相关文章
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/929432.shtml
如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!