Home
last modified time | relevance | path

Searched refs:allowed_tags (Results 1 – 3 of 3) sorted by relevance

/PHP-5.5/ext/standard/
H A Dfilters.c173 const char *allowed_tags; member
179 static int php_strip_tags_filter_ctor(php_strip_tags_filter *inst, const char *allowed_tags, int al… in php_strip_tags_filter_ctor() argument
181 if (allowed_tags != NULL) { in php_strip_tags_filter_ctor()
182 if (NULL == (inst->allowed_tags = pemalloc(allowed_tags_len, persistent))) { in php_strip_tags_filter_ctor()
185 memcpy((char *)inst->allowed_tags, allowed_tags, allowed_tags_len); in php_strip_tags_filter_ctor()
188 inst->allowed_tags = NULL; in php_strip_tags_filter_ctor()
198 if (inst->allowed_tags != NULL) { in php_strip_tags_filter_dtor()
199 pefree((void *)inst->allowed_tags, inst->persistent); in php_strip_tags_filter_dtor()
220 …strip_tags(bucket->buf, bucket->buflen, &(inst->state), (char *)inst->allowed_tags, inst->allowed_… in strfilter_strip_tags_filter()
H A Dfile.c1089 char *allowed_tags=NULL; in PHP_FUNCTION() local
1092 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|ls", &fd, &bytes, &allowed_tags, &allowed_… in PHP_FUNCTION()
1117 …retval_len = php_strip_tags(retval, actual_len, &stream->fgetss_state, allowed_tags, allowed_tags_… in PHP_FUNCTION()
H A Dstring.c4354 char *allowed_tags=NULL; local
4366 allowed_tags = Z_STRVAL_PP(allow);
4371 retval_len = php_strip_tags_ex(buf, str_len, NULL, allowed_tags, allowed_tags_len, 0);

Completed in 26 milliseconds