sokite】的更多相关文章

<?php interface Proto { //连接 function conn($url); //发送get请求 function get(); //发送post请求 function post(); //关闭连接 function close($f); } class Http implements Proto { const CRLF = "\r\n"; protected $errno = -1; protected $errstr = ''; protected $…