From aa0c3c90e2e5ba7fce5fb42ea1144a4d3ef185d7 Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 2 Feb 2018 19:48:47 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=94=B9=E5=9F=BA?= =?UTF-8?q?=E7=A1=80=E6=94=AF=E6=8C=81=E5=B7=A5=E5=85=B7=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Contracts/Tools.php | 53 +++++++++++++++++++------------------- 1 file changed, 26 insertions(+), 27 deletions(-) diff --git a/WeChat/Contracts/Tools.php b/WeChat/Contracts/Tools.php index e78149c..aa35939 100644 --- a/WeChat/Contracts/Tools.php +++ b/WeChat/Contracts/Tools.php @@ -48,7 +48,6 @@ class Tools } - /** * 根据文件后缀获取文件MINE * @param array $ext 文件后缀 @@ -104,32 +103,6 @@ class Tools return "@{$filename};filename={$postname};type={$mimetype}"; } - /** - * 以get访问模拟访问 - * @param string $url 访问URL - * @param array $query GET数 - * @param array $options - * @return bool|string - */ - public static function get($url, $query = [], $options = []) - { - $options['query'] = $query; - return self::doRequest('get', $url, $options); - } - - /** - * 以post访问模拟访问 - * @param string $url 访问URL - * @param array $data POST数据 - * @param array $options - * @return bool|string - */ - public static function post($url, $data = [], $options = []) - { - $options['data'] = $data; - return self::doRequest('post', $url, $options); - } - /** * 数组转XML内容 * @param array $data @@ -202,6 +175,32 @@ class Tools return $result; } + /** + * 以get访问模拟访问 + * @param string $url 访问URL + * @param array $query GET数 + * @param array $options + * @return bool|string + */ + public static function get($url, $query = [], $options = []) + { + $options['query'] = $query; + return self::doRequest('get', $url, $options); + } + + /** + * 以post访问模拟访问 + * @param string $url 访问URL + * @param array $data POST数据 + * @param array $options + * @return bool|string + */ + public static function post($url, $data = [], $options = []) + { + $options['data'] = $data; + return self::doRequest('post', $url, $options); + } + /** * CURL模拟网络请求 * @param string $method 请求方法