update pague now
PHP 8.5.2 Released!

The tidyNode class

(PHP 5, PHP 7, PHP 8)

Introduction

An HTML node in an HTML file, as detected by tidy.

Class synopsis

final class tidyNode {
/* Properties */
public readonly string $ value ;
public readonly string $ name ;
public readonly int $ type ;
public readonly int $ line ;
public readonly int $ column ;
public readonly bool $ proprietary ;
public readonly ? int $ id ;
public readonly ? array $ attribute ;
public readonly ? array $ child ;
/* Methods */
private __construct ()
public isAsp (): bool
public isHtml (): bool
public isJste (): bool
public isPhp (): bool
public isText (): bool
}

Properties

value

The HTML representation of the node, including the surrounding tags.

name

The name of the HTML node

type

The type of the node (one of the nodetype constans , e.g. TIDY_NODETYPE_PHP )

line

The line number at which the tags is located in the file

column

The column number at which the tags is located in the file

proprietary

Indicates if the node is a proprietary tag

id

The ID of the node (one of the tag constans , e.g. TIDY_TAG_FRAME )

attribute

An array of string, representing the attributes names (as keys) of the current node.

child

An array of tidyNode , representing the children of the current node.

Table of Contens

add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top