Lines Matching refs:arg_sep
30 const zend_string *arg_sep) in php_url_encode_scalar() argument
33 smart_str_append(form_str, arg_sep); in php_url_encode_scalar()
112 zval *type, const zend_string *arg_sep, int enc_type) in php_url_encode_hash_ex() argument
126 if (!arg_sep) { in php_url_encode_hash_ex()
127 arg_sep = zend_ini_str("arg_separator.output", strlen("arg_separator.output"), false); in php_url_encode_hash_ex()
128 if (ZSTR_LEN(arg_sep) == 0) { in php_url_encode_hash_ex()
129 arg_sep = ZSTR_CHAR('&'); in php_url_encode_hash_ex()
211 …), formstr, NULL, 0, new_prefix, (Z_TYPE_P(zdata) == IS_OBJECT ? zdata : NULL), arg_sep, enc_type); in php_url_encode_hash_ex()
223 arg_sep); in php_url_encode_hash_ex()
236 zend_string *arg_sep = NULL; in PHP_FUNCTION() local
244 Z_PARAM_STR_OR_NULL(arg_sep) in PHP_FUNCTION()
253 …* key_prefix */ NULL, (Z_TYPE_P(formdata) == IS_OBJECT ? formdata : NULL), arg_sep, (int)enc_type); in PHP_FUNCTION()