Lines Matching refs:arg_sep
26 const zend_string *arg_sep) in php_url_encode_scalar() argument
29 smart_str_append(form_str, arg_sep); in php_url_encode_scalar()
99 zval *type, const zend_string *arg_sep, int enc_type) in php_url_encode_hash_ex() argument
113 if (!arg_sep) { in php_url_encode_hash_ex()
114 arg_sep = zend_ini_str("arg_separator.output", strlen("arg_separator.output"), false); in php_url_encode_hash_ex()
115 if (ZSTR_LEN(arg_sep) == 0) { in php_url_encode_hash_ex()
116 arg_sep = ZSTR_CHAR('&'); in php_url_encode_hash_ex()
196 …), formstr, NULL, 0, new_prefix, (Z_TYPE_P(zdata) == IS_OBJECT ? zdata : NULL), arg_sep, enc_type); in php_url_encode_hash_ex()
208 arg_sep); in php_url_encode_hash_ex()
221 zend_string *arg_sep = NULL; in PHP_FUNCTION() local
229 Z_PARAM_STR_OR_NULL(arg_sep) in PHP_FUNCTION()
233 …* key_prefix */ NULL, (Z_TYPE_P(formdata) == IS_OBJECT ? formdata : NULL), arg_sep, (int)enc_type); in PHP_FUNCTION()