Вход Регистрация
Файл: concrete5.7.5.6/concrete/vendor/zendframework/zend-http/src/Client/Adapter/AdapterInterface.php
Строк: 75
<?php
/**
 * Zend Framework (http://framework.zend.com/)
 *
 * @link      http://github.com/zendframework/zf2 for the canonical source repository
 * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
 * @license   http://framework.zend.com/license/new-bsd New BSD License
 */

namespace ZendHttpClientAdapter;

/**
 * An interface description for ZendHttpClientAdapter classes.
 *
 * These classes are used as connectors for ZendHttpClient, performing the
 * tasks of connecting, writing, reading and closing connection to the server.
 */
interface AdapterInterface
{
    
/**
     * Set the configuration array for the adapter
     *
     * @param array $options
     */
    
public function setOptions($options = array());

    
/**
     * Connect to the remote server
     *
     * @param string  $host
     * @param int     $port
     * @param  bool $secure
     */
    
public function connect($host$port 80$secure false);

    
/**
     * Send request to the remote server
     *
     * @param string        $method
     * @param ZendUriUri $url
     * @param string        $httpVer
     * @param array         $headers
     * @param string        $body
     * @return string Request as text
     */
    
public function write($method$url$httpVer '1.1'$headers = array(), $body '');

    
/**
     * Read response from server
     *
     * @return string
     */
    
public function read();

    
/**
     * Close the connection to the server
     *
     */
    
public function close();
}
Онлайн: 1
Реклама