静态方法

数据自动打包: 传入的data会自动转换成content-type所指定的类型格式

默认为x-www-form-urlencoded, 也支持json等其它格式

SaberGM := Saber Global Manager, 如果觉得类名有点长, 可以使用class_alias自己取别名, 推荐服务中使用生成实例的方式使用, 而把SaberGM作为快捷方式.

  1. SaberGM::get('http://httpbin.org/get');
  2. SaberGM::delete('http://httpbin.org/delete');
  3. SaberGM::post('http://httpbin.org/post', ['foo' => 'bar']);
  4. SaberGM::put('http://httpbin.org/put', ['foo' => 'bar']);
  5. SaberGM::patch('http://httpbin.org/patch', ['foo' => 'bar']);