PHP Doku:: Get line number for a node - domnode.getlineno.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzXML-ManipulationDocument Object ModelThe DOMNode classDOMNode::getLineNo

Ein Service von Reinhard Neidl - Webprogrammierung.

The DOMNode class

<<DOMNode::cloneNode

DOMNode::hasAttributes>>

DOMNode::getLineNo

(PHP 5 >= 5.3.0)

DOMNode::getLineNoGet line number for a node

Beschreibung

public int DOMNode::getLineNo ( void )

Gets line number for where the node is defined.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Always returns the line number where the node was defined in.

Beispiele

Beispiel #1 DOMNode::getLineNo() example

<?php
// XML dump for below example
$xml = <<<XML
<?xml version="1.0" encoding="utf-8"?>
<root>
    <node />
</root>
XML;

// Create a new DOMDocument instance
$dom = new DOMDocument;

// Load the XML
$dom->loadXML($xml);

// Print where the line where the 'node' element was defined in
printf('The <node> tag is defined on line %d'$dom->getElementsByTagName('node')->item(0)->getLineNo());
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

The <node> tag is defined in line 3


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)