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 请求方法