Searched defs:part (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_3/ext/intl/grapheme/ |
| H A D | grapheme_string.c | 162 /* do utf16 part of the strpos */ 237 /* do utf16 part of the strpos */ 398 Returns part of a string */ 598 zend_bool part = 0; local 600 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|b", (char **)&haystack, &haystack_len, (char **)&needle, &needle_len, &part) == FAILURE) { 632 if (part) { 653 if (part) { 663 /* {{{ proto string grapheme_strstr(string haystack, string needle[, bool part]) 671 /* {{{ proto string grapheme_stristr(string haystack, string needle[, bool part]) 802 zval *next = NULL; /* return offset of next part o [all...] |
| /PHP_5_3/ext/imap/ |
| H A D | php_imap.c | 907 PHP re-assigns CL_EXPUNGE a custom value that can be used as part of the imap_open() bitfield 1021 TYPEMULTIPART multiple part 3489 PART *mypart=NULL, *part; local 3677 bod->nested.part = mail_newbody_part(); 3678 mypart = bod->nested.part; 3781 if (bod && bod->type == TYPEMULTIPART && (!bod->nested.part || !bod->nested.part->next)) { 3827 /* first body part */ 3828 part = bod->nested.part; 4552 PART *part; local [all...] |
| /PHP_5_3/ext/mbstring/ |
| H A D | mbstring.c | 293 ZEND_ARG_INFO(0, part) 300 ZEND_ARG_INFO(0, part) 307 ZEND_ARG_INFO(0, part) 314 ZEND_ARG_INFO(0, part) 2269 /* {{{ proto string mb_strstr(string haystack, string needle[, bool part[, string encoding]]) 2277 zend_bool part = 0; local 2286 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|bs", (char **)&haystack.val, (int *)&haystack.len, (char **)&needle.val, (int *)&needle.len, &part, &enc_name, &enc_name_len) == FAILURE) { 2305 if (part) { 2327 /* {{{ proto string mb_strrchr(string haystack, string needle[, bool part[, string encoding]]) 2335 zend_bool part local 2391 zend_bool part = 0; local 2450 zend_bool part = 0; local [all...] |
| /PHP_5_3/ext/soap/ |
| H A D | php_sdl.c | 452 xmlNodePtr *message, part; local 471 tmp = get_attribute(header->properties, "part"); 473 soap_error0(E_ERROR, "Parsing WSDL: Missing part attribute for <header>"); 475 part = get_node_with_attribute_ex((*message)->children, "part", WSDL_NAMESPACE, "name", (char*)tmp->children->content, NULL); 476 if (!part) { 477 soap_error1(E_ERROR, "Parsing WSDL: Missing part '%s' in <message>", tmp->children->content); 511 tmp = get_attribute(part->properties, "type"); 513 h->encode = get_encoder_from_prefix(ctx->sdl, part, tmp->children->content); 515 tmp = get_attribute(part 666 xmlNodePtr trav, part, message = NULL, *tmp; local [all...] |
| /PHP_5_3/ext/spl/ |
| H A D | spl_iterators.c | 1050 /* {{{ proto void RecursiveTreeIterator::setPrefixPart(int part, string prefix) throws OutOfRangeException 1055 long part; local 1059 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ls", &part, &prefix, &prefix_len) == FAILURE) { 1062 if (0 > part || part > 5) { 1067 smart_str_free(&object->prefix[part]); 1068 smart_str_appendl(&object->prefix[part], prefix, prefix_len); 1235 ZEND_ARG_INFO(0, part)
|
| /PHP_5_3/ext/standard/ |
| H A D | string.c | 1623 /* {{{ proto string stristr(string haystack, string needle[, bool part]) 1634 zend_bool part = 0; local 1636 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sz|b", &haystack, &haystack_len, &needle, &part) == FAILURE) { 1664 if (part) { 1677 /* {{{ proto string strstr(string haystack, string needle[, bool part]) 1687 zend_bool part = 0; local 1689 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sz|b", &haystack, &haystack_len, &needle, &part) == FAILURE) { 1711 if (part) { 2147 Returns part of a string */ 2212 Replaces part o [all...] |
Completed in 28 milliseconds