选择语言 :

 Module_HttpClient_Driver_Fsock::delete

DELETE方式获取数据,支持多个URL

string, Module_HttpClient_Driver_Fsock::delete( string/array $url , string/array $vars [, $timeout $timeout = integer 10 ] )

参数列表

参数 类型 描述 默认值
$url string/array $url
$vars string/array $vars
$timeout $timeout integer 10
返回值
  • string, false on failure
File: ./modules/httpclient/driver/fsock.class.php
public function delete($url, $vars, $timeout = 10)
{
    $this->method('DELETE');

    return $this->get($url, $timeout);
}