Lines Matching refs:formstr
28 PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr, in php_url_encode_hash_ex() argument
141 …php_url_encode_hash_ex(HASH_OF(*zdata), formstr, NULL, 0, newprefix, newprefix_len, "%5D", 3, (Z_T… in php_url_encode_hash_ex()
148 if (formstr->len) { in php_url_encode_hash_ex()
149 smart_str_appendl(formstr, arg_sep, arg_sep_len); in php_url_encode_hash_ex()
152 smart_str_appendl(formstr, key_prefix, key_prefix_len); in php_url_encode_hash_ex()
159 smart_str_appendl(formstr, ekey, ekey_len); in php_url_encode_hash_ex()
164 smart_str_appendl(formstr, num_prefix, num_prefix_len); in php_url_encode_hash_ex()
167 smart_str_appendl(formstr, ekey, ekey_len); in php_url_encode_hash_ex()
170 smart_str_appendl(formstr, key_suffix, key_suffix_len); in php_url_encode_hash_ex()
171 smart_str_appendl(formstr, "=", 1); in php_url_encode_hash_ex()
200 smart_str_appendl(formstr, ekey, ekey_len); in php_url_encode_hash_ex()
216 smart_str formstr = {0}; in PHP_FUNCTION() local
228 …if (php_url_encode_hash_ex(HASH_OF(formdata), &formstr, prefix, prefix_len, NULL, 0, NULL, 0, (Z_T… in PHP_FUNCTION()
229 if (formstr.c) { in PHP_FUNCTION()
230 efree(formstr.c); in PHP_FUNCTION()
235 if (!formstr.c) { in PHP_FUNCTION()
239 smart_str_0(&formstr); in PHP_FUNCTION()
241 RETURN_STRINGL(formstr.c, formstr.len, 0); in PHP_FUNCTION()