Searched defs:allow (Results 1 - 2 of 2) sorted by relevance
| /PHP_5_3/ext/spl/ |
| H A D | spl_functions.c | 80 void spl_add_class_name(zval *list, zend_class_entry * pce, int allow, int ce_flags TSRMLS_DC) argument 82 if (!allow || (allow > 0 && pce->ce_flags & ce_flags) || (allow < 0 && !(pce->ce_flags & ce_flags))) { 96 void spl_add_interfaces(zval *list, zend_class_entry * pce, int allow, int ce_flags TSRMLS_DC) argument 101 spl_add_class_name(list, pce->interfaces[num_interfaces], allow, ce_flags TSRMLS_CC); 107 int spl_add_classes(zend_class_entry *pce, zval *list, int sub, int allow, int ce_flags TSRMLS_DC) argument 112 spl_add_class_name(list, pce, allow, ce_flags TSRMLS_CC); 114 spl_add_interfaces(list, pce, allow, ce_flags TSRMLS_CC); 117 spl_add_classes(pce, list, sub, allow, ce_flag [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | string.c | 4048 zval **allow=NULL; local 4054 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|Z", &str, &str_len, &allow) == FAILURE) { 4058 /* To maintain a certain BC, we allow anything for the second parameter and return original string */ 4059 if (allow != NULL) { 4060 convert_to_string_ex(allow); 4061 allowed_tags = Z_STRVAL_PP(allow); 4062 allowed_tags_len = Z_STRLEN_PP(allow); 4281 PHPAPI size_t php_strip_tags(char *rbuf, int len, int *stateptr, char *allow, int allow_len) /* {{{ */ argument 4283 return php_strip_tags_ex(rbuf, len, stateptr, allow, allow_len, 0); 4294 The state variable is passed in to allow 4307 php_strip_tags_ex(char *rbuf, int len, int *stateptr, char *allow, int allow_len, zend_bool allow_tag_spaces) argument [all...] |
Completed in 8 milliseconds