Compzone.Org :: Podręcznik PHP :: DomDocumentType->name()
Która technologia najbardziej Cię interesuje?
PHP
ASP
AJAX
SQL
JavaScript
Inna
Sonda Wyniki

Add to Google

DomDocumentType->name()

(no version information, might be only in CVS)

DomDocumentType->name() --  Returns name of document type

Opis

class DomDocumentType {

string name ( void )

}

This function returns the name of the document type.

Zwracane wartości

Returns the name of the DomDocumentType, as a string.

Przykłady

Przykład 1. Getting the document type's name

<?php

include("example.inc");

if (!
$dom domxml_open_mem($xmlstr)) {
    echo 
"Error while parsing the document\n";
    exit;
}

$doctype $dom->doctype();
echo 
$doctype->name(); // chapter

?>

Migrating to PHP 5

Use the name property of the DOMDocumentType object.

Copyright © 2005-2006 Compzone.Org. Kopiowanie i wykorzystywanie materiałów zawartych na tej stronie bez zgody autora zabronione!