| /PHP_5_3/ext/dom/examples/ |
| H A D | dom1.php | 56 print "Removed " . $attr . " attributes.\n"; 58 echo "--------- attributes of rootnode\n"; 59 $attrs = $rootnode->attributes;
|
| /PHP_5_3/ext/imap/ |
| H A D | php_imap.c | 1884 Reads the list of mailboxes and returns a full array of objects containing name, attributes, and delimiter */ 1917 add_property_long(mboxob, "attributes", cur->attributes); 2223 add_property_long(mboxob, "attributes", cur->attributes); 4915 PHP_IMAP_EXPORT void mm_list(MAILSTREAM *stream, DTYPE delimiter, char *mailbox, long attributes) argument 4928 IMAPG(imap_folder_objects)->attributes = attributes; 4937 ocur->attributes = attributes; 4962 mm_lsub(MAILSTREAM *stream, DTYPE delimiter, char *mailbox, long attributes) argument [all...] |
| H A D | php_imap.h | 83 long attributes; member in struct:php_imap_mailbox_struct
|
| /PHP_5_3/ext/ldap/ |
| H A D | ldap.c | 1055 php_error_docref(NULL TSRMLS_CC, E_WARNING, "called before calling ldap_first_attribute() or no attributes found in result entry"); 1077 Get attributes from a search result entry */ 1487 Determine if an entry has a specific value for one of its attributes */ 2225 ZEND_ARG_INFO(0, attributes) 2236 ZEND_ARG_INFO(0, attributes) 2247 ZEND_ARG_INFO(0, attributes)
|
| /PHP_5_3/ext/simplexml/ |
| H A D | simplexml.c | 559 zend_error(E_WARNING, "It is not yet possible to assign complex types to %s", attribs ? "attributes" : "properties"); 657 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot change attribute number %ld when only %d attributes exist", Z_LVAL_P(member), nodendx); 1114 sxe_properties_add(rv, "@attributes", sizeof("@attributes"), zattr TSRMLS_CC); 1230 return; /* attributes don't have attributes */ 1526 return; /* attributes don't have attributes */ 1558 /* {{{ proto array SimpleXMLElement::attributes([string ns [, bool is_prefix]]) 1559 Identifies an element's attributes */ [all...] |
| /PHP_5_3/ext/soap/ |
| H A D | php_encoding.c | 1613 if (sdlType->attributes) { 1617 zend_hash_internal_pointer_reset_ex(sdlType->attributes, &pos); 1618 while (zend_hash_get_current_data_ex(sdlType->attributes, (void**)&attr, &pos) == SUCCESS) { 1645 zend_hash_move_forward_ex(sdlType->attributes, &pos); 1990 sdlType->attributes == NULL && 2017 if (sdlType->attributes) { 2022 zend_hash_internal_pointer_reset_ex(sdlType->attributes, &pos); 2023 while (zend_hash_get_current_data_ex(sdlType->attributes, (void**)&attr, &pos) == SUCCESS) { 2051 zend_hash_move_forward_ex(sdlType->attributes, &pos); 2406 sdl_type->attributes [all...] |
| H A D | php_schema.c | 159 {any attributes with non-schema namespace . . .}> 172 if (!ctx->attributes) { 173 ctx->attributes = emalloc(sizeof(HashTable)); 174 zend_hash_init(ctx->attributes, 0, NULL, delete_attribute, 0); 301 {any attributes with non-schema namespace . . .}> 407 {any attributes with non-schema namespace . . .}> 489 {any attributes with non-schema namespace . . .}> 587 {any attributes with non-schema namespace . . .}> 626 {any attributes with non-schema namespace . . .}> 632 {any attributes wit [all...] |
| H A D | php_sdl.c | 1386 type->attributes = emalloc(sizeof(HashTable)); 1387 zend_hash_init(type->attributes, i, NULL, delete_attribute, 0); 1391 sdl_deserialize_key(type->attributes, attr, in); 1995 if (type->attributes) { 1996 i = zend_hash_num_elements(type->attributes); 2003 zend_hash_internal_pointer_reset(type->attributes); 2004 while (zend_hash_get_current_data(type->attributes, (void**)&tmp) == SUCCESS) { 2005 sdl_serialize_key(type->attributes, out); 2007 zend_hash_move_forward(type->attributes); 2818 if (ptype->attributes) { [all...] |
| H A D | php_sdl.h | 77 HashTable *attributes; /* array of sdlAttributePtr */ member in struct:sdlCtx 205 HashTable *attributes; /* array of sdlAttributePtr */ member in struct:_sdlType
|
| H A D | soap.c | 3669 soap_server_fault("Client", "A SOAP Envelope element cannot have non Namespace qualified attributes", NULL, NULL, NULL TSRMLS_CC); 3710 soap_server_fault("Client", "A SOAP Body element cannot have non Namespace qualified attributes", NULL, NULL, NULL TSRMLS_CC); 3777 soap_server_fault("Client", "A SOAP Header element cannot have non Namespace qualified attributes", NULL, NULL, NULL TSRMLS_CC); 4917 if (type->attributes && 4918 zend_hash_find(type->attributes, SOAP_1_1_ENC_NAMESPACE":arrayType", 4941 if (type->attributes && 4942 zend_hash_find(type->attributes, SOAP_1_2_ENC_NAMESPACE":itemType", 4960 if (type->attributes && 4961 zend_hash_find(type->attributes, SOAP_1_2_ENC_NAMESPACE":arraySize", 4997 if (type->attributes) { [all...] |
| /PHP_5_3/ext/xml/ |
| H A D | compat.c | 50 _start_element_handler(void *user, const xmlChar *name, const xmlChar **attributes) argument 60 if (attributes) { 61 while (attributes[attno] != NULL) { 65 att_name = (char *)attributes[attno++]; 66 att_value = (char *)attributes[attno++]; 84 parser->h_start_element(parser->user, (const XML_Char *) qualified_name, (const XML_Char **) attributes); 90 _start_element_handler_ns(void *user, const xmlChar *name, const xmlChar *prefix, const xmlChar *URI, int nb_namespaces, const xmlChar ** namespaces, int nb_attributes, int nb_defaulted, const xmlChar ** attributes) argument 138 if (attributes) { 143 att_name = (char *) attributes[y++]; 144 att_prefix = (char *)attributes[ [all...] |
| H A D | xml.c | 871 void _xml_startElementHandler(void *userData, const XML_Char *name, const XML_Char **attributes) argument 874 const char **attrs = (const char **) attributes; 891 while (attributes && *attributes) { 892 att = _xml_decode_tag(parser, attributes[0]); 893 val = xml_utf8_decode(attributes[1], strlen(attributes[1]), &val_len, parser->target_encoding); 897 attributes += 2; 926 attributes = (const XML_Char **) attrs; 928 while (attributes [all...] |