}
if (ht->nApplyCount > 0) {
- /* Prevent Recuriosn */
+ /* Prevent recursion */
return SUCCESS;
}
}
arg_sep_len = strlen(arg_sep);
- for(zend_hash_internal_pointer_reset(ht);
+ for (zend_hash_internal_pointer_reset(ht);
(key_type = zend_hash_get_current_key_ex(ht, &key, &key_len, &idx, 0, NULL)) != HASH_KEY_NON_EXISTANT;
- zend_hash_move_forward(ht)) {
+ zend_hash_move_forward(ht)
+ ) {
if (key_len && key[key_len-1] == '\0') {
/* We don't want that trailing NULL */
key_len -= 1;
}
/* }}} */
+/* {{{ proto string http_build_query(mixed formdata [, string prefix])
+ */
PHP_FUNCTION(http_build_query)
{
zval *formdata;