클래스·함수 명세

HTTP

Zittme\Framework\HTTP 클래스의 공개 메서드 목록입니다. 이 문서는 Zittme 코어 소스에서 자동 생성되었습니다.

소스: common/framework/HTTP.php

공개 메서드

  • static function resetClient()
  • Reset the Guzzle client instance.
  • static function get(string $url, $data = null, array $headers = [], array $cookies = [], array $settings = [])
  • Make a GET request.
  • static function head(string $url, $data = null, array $headers = [], array $cookies = [], array $settings = [])
  • Make a HEAD request.
  • static function post(string $url, $data = null, array $headers = [], array $cookies = [], array $settings = [])
  • Make a POST request.
  • static function download(string $url, string $target_filename, string $method = 'GET', $data = null, array $headers = [], array $cookies = [], array $settings = [])
  • Download a file.
  • static function request(string $url, string $method = 'GET', $data = null, array $headers = [], array $cookies = [], array $settings = [])
  • Make any type of request.
  • static function async(string $url, string $method = 'GET', $data = null, array $headers = [], array $cookies = [], array $settings = [])
  • Make any type of request asynchronously.
  • static function multiple(array $requests)
  • Make multiple concurrent requests.