本文整理汇总了PHP中http::multipart_post方法的典型用法代码示例。如果您正苦于以下问题:PHP http::multipart_post方法的具体用法?PHP http::multipart_post怎么用?PHP http::multipart_post使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类http
的用法示例。
在下文中一共展示了http::multipart_post方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
<?php
require_once 'http.inc';
$fields = array('user' => 'GuinuX', 'password' => 'mypass', 'lang' => 'US');
$files = array();
$files[] = array('name' => 'myfile1', 'content-type' => 'text/plain', 'filename' => 'test1.txt', 'data' => 'Hello from File 1 !!!');
$files[] = array('name' => 'myfile2', 'content-type' => 'text/plain', 'filename' => 'test2.txt', 'data' => "bla bla bla\nbla bla");
$http_client = new http(HTTP_V11, false);
$http_client->host = 'www.myhost.com';
if ($http_client->multipart_post('/upload.pl', $fields, $files) == HTTP_STATUS_OK) {
print $http_client->get_response_body();
} else {
print 'Server returned status code : ' . $http_client->status;
}
unset($http_client);
?>