summaryrefslogtreecommitdiff
path: root/ext/standard/php_http.h
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2005-12-04 17:44:27 +0000
committerIlia Alshanetsky <iliaa@php.net>2005-12-04 17:44:27 +0000
commit2994c2367062a63394753fc367708b3d1f4955e8 (patch)
tree2b6375355843acd1bea60d1b172bdb8fd5cac3e7 /ext/standard/php_http.h
parenteb83ca1cd30bb96377593ad36538e9867ba3b63a (diff)
downloadphp-git-2994c2367062a63394753fc367708b3d1f4955e8.tar.gz
MFH:
Added 2nd optional parameter to parse_url() that allows retrieval of individual URL components. Added 3rd optional parameter to http_build_query() that allows custom param separator.
Diffstat (limited to 'ext/standard/php_http.h')
-rw-r--r--ext/standard/php_http.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_http.h b/ext/standard/php_http.h
index d221191662..a2de9dc59f 100644
--- a/ext/standard/php_http.h
+++ b/ext/standard/php_http.h
@@ -28,7 +28,7 @@ PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr,
const char *num_prefix, int num_prefix_len,
const char *key_prefix, int key_prefix_len,
const char *key_suffix, int key_suffix_len,
- zval *type TSRMLS_DC);
+ zval *type, char *arg_sep TSRMLS_DC);
#define php_url_encode_hash(ht, formstr) php_url_encode_hash_ex((ht), (formstr), NULL, 0, NULL, 0, NULL, 0, NULL TSRMLS_CC)
PHP_FUNCTION(http_build_query);