aboutsummaryrefslogtreecommitdiffstats
path: root/include/network.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-09-09 02:42:07 -0700
committerfriendica <info@friendica.com>2014-09-09 02:42:07 -0700
commit386156138f63fbabf9ac71a81a6bea99410c8100 (patch)
tree16be18eccf4fa9d75dc69cffbf84655769b22d3a /include/network.php
parent9753453ec4ed56fe8d1d07910147929d2e1a05c2 (diff)
downloadvolse-hubzilla-386156138f63fbabf9ac71a81a6bea99410c8100.tar.gz
volse-hubzilla-386156138f63fbabf9ac71a81a6bea99410c8100.tar.bz2
volse-hubzilla-386156138f63fbabf9ac71a81a6bea99410c8100.zip
syntax error in dba driver, document z_post_url
Diffstat (limited to 'include/network.php')
-rw-r--r--include/network.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/include/network.php b/include/network.php
index 5ad391491..543c6aa72 100644
--- a/include/network.php
+++ b/include/network.php
@@ -132,6 +132,35 @@ function z_fetch_url($url, $binary = false, $redirects = 0, $opts = array()) {
}
+/**
+ * @function z_fetch_url
+ * @param string $url
+ * URL to fetch
+ * @param mixed $params
+ * The full data to post in a HTTP "POST" operation. To post a file,
+ * prepend a filename with @ and use the full path. The filetype can
+ * be explicitly specified by following the filename with the type in
+ * the format ';type=mimetype'. This parameter can either be passed
+ * as a urlencoded string like 'para1=val1&para2=val2&...' or as an
+ * array with the field name as key and field data as value. If value
+ * is an array, the Content-Type header will be set to multipart/form-data.
+ * As of PHP 5.2.0, value must be an array if files are passed to this
+ * option with the @ prefix. As of PHP 5.5.0, the @ prefix is deprecated
+ * and files can be sent using CURLFile.
+ * @param int $redirects = 0
+ * internal use, recursion counter
+ * @param array $opts (optional parameters)
+ * 'accept_content' => supply Accept: header with 'accept_content' as the value
+ * 'timeout' => int seconds, default system config value or 60 seconds
+ * 'http_auth' => username:password
+ * 'novalidate' => do not validate SSL certs, default is to validate using our CA list
+ *
+ * @returns array
+ * 'return_code' => HTTP return code or 0 if timeout or failure
+ * 'success' => boolean true (if HTTP 2xx result) or false
+ * 'header' => HTTP headers
+ * 'body' => fetched content
+ */
function z_post_url($url,$params, $redirects = 0, $opts = array()) {