summaryrefslogtreecommitdiff
path: root/ext/standard/basic_functions.c
diff options
context:
space:
mode:
authorSara Golemon <pollita@php.net>2003-09-06 00:35:21 +0000
committerSara Golemon <pollita@php.net>2003-09-06 00:35:21 +0000
commit0be65c49d38b30bb6dadfa9cb805c39515e995f1 (patch)
tree0211c3fb0b4a58980ae8c490a0279ec27123c0b0 /ext/standard/basic_functions.c
parentb0aff5de7deb5588370234d1c996675a17ca83ac (diff)
downloadphp-git-0be65c49d38b30bb6dadfa9cb805c39515e995f1.tar.gz
Introducing php_url_encode_hash_ex() internal function
and http_build_query() userspace function.
Diffstat (limited to 'ext/standard/basic_functions.c')
-rw-r--r--ext/standard/basic_functions.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c
index 13b034bcbe..c871821bfa 100644
--- a/ext/standard/basic_functions.c
+++ b/ext/standard/basic_functions.c
@@ -27,6 +27,7 @@
#include "internal_functions_registry.h"
#include "php_standard.h"
#include "php_math.h"
+#include "http.h"
#include "php_incomplete_class.h"
#include "ext/standard/info.h"
#include "ext/session/php_session.h"
@@ -429,6 +430,7 @@ function_entry basic_functions[] = {
PHP_FE(urldecode, NULL)
PHP_FE(rawurlencode, NULL)
PHP_FE(rawurldecode, NULL)
+ PHP_FE(http_build_query, NULL)
#ifdef HAVE_SYMLINK
PHP_FE(readlink, NULL)