X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_request_object.c;h=9bebb438b7f1e1cf8f8bf35f7c95f3f31e1e7948;hp=925cd6d06b5bf84f3e3f3507c190fd04a8fa37bb;hb=419ba9235752d56f15b393fc7969316978c6c721;hpb=edc84b40eb2c5be04492fa98fec5833a030782eb diff --git a/http_request_object.c b/http_request_object.c index 925cd6d..9bebb43 100644 --- a/http_request_object.c +++ b/http_request_object.c @@ -1037,7 +1037,7 @@ PHP_METHOD(HttpRequest, getUrl) * Set the request method. * * Expects an int as parameter specifying the request method to use. - * In PHP 5.1+ HttpRequest::METH, otherwise the HTTP_METH constants can be used. + * In PHP 5.1+ HttpRequest::METH_*, otherwise the HTTP_METH_* constants can be used. * * Returns TRUE on success, or FALSE on failure. */ @@ -1959,7 +1959,7 @@ PHP_METHOD(HttpRequest, clearHistory) * GET example: *
  * setOptions(array('lastmodified' => filemtime('local.rss')));
  * $r->addQueryData(array('category' => 3));
  * try {
@@ -1976,7 +1976,7 @@ PHP_METHOD(HttpRequest, clearHistory)
  * POST example:
  * 
  * setOptions(array('cookies' => array('lang' => 'de')));
  * $r->addPostFields(array('user' => 'mike', 'pass' => 's3c|r3t'));
  * $r->addPostFile('image', 'profile.jpg', 'image/jpeg');