本文整理汇总了PHP中HttpClient::setBody方法的典型用法代码示例。如果您正苦于以下问题:PHP HttpClient::setBody方法的具体用法?PHP HttpClient::setBody怎么用?PHP HttpClient::setBody使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HttpClient
的用法示例。
在下文中一共展示了HttpClient::setBody方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __destruct
while (!feof($this->fh)) {
$this->response .= fread($this->fh, 1024);
}
}
/**
* 关闭socket连接
* @access public
*/
public function __destruct()
{
if ($this->fh) {
fclose($this->fh);
}
}
}
$url = "http://localhost/jomo/http/test.php";
/** post test **/
$http2 = new HttpClient();
$header = array("Content-Type" => "application/x-www-form-urlencoded");
$body = array("username" => "1234", "submit" => "Login");
$http2->setUrl($url);
$http2->setHeader($header);
$http2->setBody($body);
var_dump($http2->post());
exit;
/** head test **/
$http3 = new HttpClient();
var_dump($http3->head($url, 1));
/** get test **/
$http1 = new HttpClient();
var_dump($http1->get($url));