> Phalcon7中文手册 > HTTP 请求客户端(HTTP Request Client)

Http 请求客户端(HTTP Request Client)¶

通过 Phalcon\Http\Client 我们可以发起 HTTP 请求。

GET 请求(GET Request)¶

<?PHP

use Phalcon\Http\Client\Adapter\curl as Client;

// Create a client instance
$client = new Client();

// Or auto create
$client = Phalcon\Http\Client::factory();

// Send GET request
$response = $client->get('http://localhost/');

POST 请求(POST Request)¶

<?php

use Phalcon\Http\Client\Adapter\Curl as Client;

// Create a client instance
$client = new Client();

// Send POST request
$response = $client->post('http://localhost/auth/login', array('username' => 'test', 'password' => 'test'));