From: Michael Wallner
Expects the second parameter to be a resource referencing an already
opened stream, from which the data to upload should be read.
See http_get() for a full list of available options.
Returns the HTTP response(s) as string on success. or FALSE on failure.
+Returns the HTTP response(s) as string on success, or FALSE on failure.
+Performs an HTTP PUT request on the supplied url.
+Expects the second parameter to be a string containing the data to upload.
+See http_get() for a full list of available options.
Returns the HTTP response(s) as string on success, or FALSE on failure.
Register a custom request method.
Expects a string parameter containing the request method name to register.
@@ -777,6 +782,22 @@ If the parameter is empty or omitted the put file will be unset.Get previously set put file.
Returns a string containing the path to the currently set put file.
+Set PUT data to send, overwriting previously set PUT data.
+Affects only PUT requests.
+Only either PUT data or PUT file can be used for each request.
+PUT data has higher precedence and will be used even if a PUT
+file is set.
Accepts a string as parameter containing the data to upload.
+Returns TRUE on success, or FALSE on failure.
+Add PUT data, leaving previously set PUT data unchanged.
+Affects only PUT requests.
Expects a string as parameter containing the data to concatenate.
+Returns TRUE on success, or FALSE on failure.
+Get previously set PUT data.
+Returns a string containing the currently set raw post data.
Get all response data after the request has been sent.
Returns an associative array with the key "headers" containing an associative
@@ -1171,6 +1192,8 @@ http.cache_log is set.
Generated at: Mon, 20 Feb 2006 17:41:32 +0100
+Generated at: Fri, 24 Feb 2006 21:29:29 +0100