Hosting de Calidad
  • Inicio
  • Precios y servicios
  • F.a.q y ayudas
  • Realizar pedido
  • Webs alojadas
  • Quienes somos
  • Foro HyD
  • Contacto

    Zona Dominios

    Entrar
    registro de dominios


    Zona Hosting

    Entrar
    alojamiento web


    5 Métodos de Pago
    Tarjeta de crédito
    Domiciliación
    Transferencia
    Soporte Epagado
    Soporte Paypal

    Liberalización .es

    Ver mas
    dominios .es


  •  
     
     
    Funciones de DOM XML

    XXIV_ Funciones de DOM XML

    Aviso

    Esta extensión es EXPERIMENTAL_ Esto significa que el comportamiento de esta extensión, los nombre de sus funciones y en definitiva TODO lo documentado sobre esta extensión, puede cambiar en una futura versión de PHP SIN AVISO_ La advertencia queda hecha, y utilizar esta extensión queda bajo su propia responsabiliad_

    Estas funciones son disponibles solamente si PHP fué configurado con __with_dom=[DIR], usando al libreria de XML de GNOME_ Usted va a necesitar como mínimo libxml_2_0_0 (la versión beta no trabajará)_ Estas functiones fueron añadidas en PHP4_

    Este module define las siguientes constantes:

    Tabla 1_ Constantes de XML

    ConstanteValorDescripción
    XML_ELEMENT_NODE1 
    XML_ATTRIBUTE_NODE2 
    XML_TEXT_NODE3 
    XML_CDATA_SECTION_NODE4 
    XML_ENTITY_REF_NODE5 
    XML_ENTITY_NODE6 
    XML_PI_NODE7 
    XML_COMMENT_NODE8 
    XML_DOCUMENT_NODE9 
    XML_DOCUMENT_TYPE_NODE10 
    XML_DOCUMENT_FRAG_NODE11 
    XML_NOTATION_NODE12 
    XML_GLOBAL_NAMESPACE1 
    XML_LOCAL_NAMESPACE2 

    Este modulo define un número de clases_ Las funciones de DOM XML devuelven un árbol conteniendo la structura del documento XML, en el cual cada nodo es un objecto perteneciente a una de estas clases_

    Tabla de contenidos
    DomAttribute_>name __  Returns name of attribute
    DomAttribute_>specified __  Checks if attribute is specified
    DomAttribute_>value __  Returns value of attribute
    DomDocument_>add_root [deprecated] __  Adds a root node
    DomDocument_>create_attribute __ Create new attribute
    DomDocument_>create_cdata_section __ Create new cdata node
    DomDocument_>create_comment __ Create new comment node
    DomDocument_>create_element_ns __  Create new element node with an associated namespace
    DomDocument_>create_element __ Create new element node
    DomDocument_>create_entity_reference __ 
    DomDocument_>create_processing_instruction __ Creates new PI node
    DomDocument_>create_text_node __ Create new text node
    DomDocument_>doctype __  Returns the document type
    DomDocument_>document_element __  Returns root element node
    DomDocument_>dump_file __  Dumps the internal XML tree back into a file
    DomDocument_>dump_mem __  Dumps the internal XML tree back into a string
    DomDocument_>get_element_by_id __  Searches for an element with a certain id
    DomDocument_>get_elements_by_tagname __ 
    DomDocument_>html_dump_mem __  Dumps the internal XML tree back into a string as HTML
    DomDocument_>xinclude __  Substitutes XIncludes in a DomDocument Object_
    DomDocumentType_>entities __  Returns list of entities
    DomDocumentType_>internal_subset __  Returns internal subset
    DomDocumentType_>name __  Returns name of document type
    DomDocumentType_>notations __  Returns list of notations
    DomDocumentType_>public_id __  Returns public id of document type
    DomDocumentType_>system_id __  Returns system id of document type
    DomElement_>get_attribute_node __  Returns value of attribute
    DomElement_>get_attribute __  Returns value of attribute
    DomElement_>get_elements_by_tagname __  Gets elements by tagname
    DomElement_>has_attribute __  Checks to see if attribute exists
    DomElement_>remove_attribute __  Removes attribute
    DomElement_>set_attribute __  Adds new attribute
    DomElement_>tagname __  Returns name of element
    DomNode_>add_namespace __  Adds a namespace declaration to a node_
    DomNode_>append_child __  Adds new child at the end of the children
    DomNode_>append_sibling __  Adds new sibling to a node
    DomNode_>attributes __  Returns list of attributes
    DomNode_>child_nodes __  Returns children of node
    DomNode_>clone_node __  Clones a node
    DomNode_>dump_node __  Dumps a single node
    DomNode_>first_child __  Returns first child of node
    DomNode_>get_content __  Gets content of node
    DomNode_>has_attributes __  Checks if node has attributes
    DomNode_>has_child_nodes __  Checks if node has children
    DomNode_>insert_before __  Inserts new node as child
    DomNode_>is_blank_node __  Checks if node is blank
    DomNode_>last_child __  Returns last child of node
    DomNode_>next_sibling __  Returns the next sibling of node
    DomNode_>node_name __  Returns name of node
    DomNode_>node_type __  Returns type of node
    DomNode_>node_value __  Returns value of a node
    DomNode_>owner_document __  Returns the document this node belongs to
    DomNode_>parent_node __  Returns the parent of the node
    DomNode_>prefix __  Returns name space prefix of node
    DomNode_>previous_sibling __  Returns the previous sibling of node
    DomNode_>remove_child __  Removes child from list of children
    DomNode_>replace_child __  Replaces a child
    DomNode_>replace_node __  Replaces node
    DomNode_>set_content __  Sets content of node
    DomNode_>set_name __  Sets name of node
    DomNode_>set_namespace __  Sets namespace of a node_
    DomNode_>unlink_node __  Deletes node
    DomProcessingInstruction_>data __  Returns data of pi node
    DomProcessingInstruction_>target __  Returns target of pi node
    DomXsltStylesheet_>process __  Applies the XSLT_Transformation on a DomDocument Object_
    DomXsltStylesheet_>result_dump_file __  Dumps the result from a XSLT_Transformation into a file
    DomXsltStylesheet_>result_dump_mem __  Dumps the result from a XSLT_Transformation back into a string
    domxml_new_doc __  Creates new empty XML document
    domxml_open_file __ Creates a DOM object from XML file
    domxml_open_mem __ Creates a DOM object of an XML document
    domxml_version __  Get XML library version
    domxml_xmltree __  Creates a tree of PHP objects from an XML document
    domxml_xslt_stylesheet_doc __  Creates a DomXsltStylesheet Object from a DomDocument Object_
    domxml_xslt_stylesheet_file __  Creates a DomXsltStylesheet Object from a xsl document in a file_
    domxml_xslt_stylesheet __  Creates a DomXsltStylesheet Object from a xml document in a string_
    xpath_eval_expression __  Evaluates the XPath Location Path in the given string
    xpath_eval __  Evaluates the XPath Location Path in the given string
    xpath_new_context __  Creates new xpath context
    xptr_eval __  Evaluate the XPtr Location Path in the given string
    xptr_new_context __  Create new XPath Context
     
       



    registro de dominios | alojamiento web | hosting por publicidad

       

     

    Manual de linux Manual de apache Manual de php Manual de mysql Manual de SQL Manual del Plesk Como funciona Paypal Manual de html