| /PHP_5_5/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_5/ext/imap/ |
| H A D | php_imap.c | 1876 Reads the list of mailboxes and returns a full array of objects containing name, attributes, and delimiter */ 1909 add_property_long(mboxob, "attributes", cur->attributes); 2215 add_property_long(mboxob, "attributes", cur->attributes); 4907 PHP_IMAP_EXPORT void mm_list(MAILSTREAM *stream, DTYPE delimiter, char *mailbox, long attributes) argument 4920 IMAPG(imap_folder_objects)->attributes = attributes; 4929 ocur->attributes = attributes; 4954 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_5/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 */ 2411 ZEND_ARG_INFO(0, attributes) 2422 ZEND_ARG_INFO(0, attributes) 2433 ZEND_ARG_INFO(0, attributes)
|
| /PHP_5_5/ext/soap/ |
| 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.h | 77 HashTable *attributes; /* array of sdlAttributePtr */ member in struct:sdlCtx 205 HashTable *attributes; /* array of sdlAttributePtr */ member in struct:_sdlType
|
| H A D | php_encoding.c | 1597 if (sdlType->attributes) { 1601 zend_hash_internal_pointer_reset_ex(sdlType->attributes, &pos); 1602 while (zend_hash_get_current_data_ex(sdlType->attributes, (void**)&attr, &pos) == SUCCESS) { 1629 zend_hash_move_forward_ex(sdlType->attributes, &pos); 1973 sdlType->attributes == NULL && 2000 if (sdlType->attributes) { 2005 zend_hash_internal_pointer_reset_ex(sdlType->attributes, &pos); 2006 while (zend_hash_get_current_data_ex(sdlType->attributes, (void**)&attr, &pos) == SUCCESS) { 2034 zend_hash_move_forward_ex(sdlType->attributes, &pos); 2380 sdl_type->attributes [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 | soap.c | 3447 soap_server_fault("Client", "A SOAP Envelope element cannot have non Namespace qualified attributes", NULL, NULL, NULL TSRMLS_CC); 3488 soap_server_fault("Client", "A SOAP Body element cannot have non Namespace qualified attributes", NULL, NULL, NULL TSRMLS_CC); 3555 soap_server_fault("Client", "A SOAP Header element cannot have non Namespace qualified attributes", NULL, NULL, NULL TSRMLS_CC); 4695 if (type->attributes && 4696 zend_hash_find(type->attributes, SOAP_1_1_ENC_NAMESPACE":arrayType", 4719 if (type->attributes && 4720 zend_hash_find(type->attributes, SOAP_1_2_ENC_NAMESPACE":itemType", 4738 if (type->attributes && 4739 zend_hash_find(type->attributes, SOAP_1_2_ENC_NAMESPACE":arraySize", 4775 if (type->attributes) { [all...] |
| /PHP_5_5/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 | 771 void _xml_startElementHandler(void *userData, const XML_Char *name, const XML_Char **attributes) argument 774 const char **attrs = (const char **) attributes; 791 while (attributes && *attributes) { 792 att = _xml_decode_tag(parser, attributes[0]); 793 val = xml_utf8_decode(attributes[1], strlen(attributes[1]), &val_len, parser->target_encoding); 797 attributes += 2; 826 attributes = (const XML_Char **) attrs; 828 while (attributes [all...] |
| /PHP_5_5/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); 1112 sxe_properties_add(rv, "@attributes", sizeof("@attributes"), zattr TSRMLS_CC); 1264 return; /* attributes don't have attributes */ 1566 return; /* attributes don't have attributes */ 1598 /* {{{ proto array SimpleXMLElement::attributes([string ns [, bool is_prefix]]) 1599 Identifies an element's attributes */ [all...] |