tidyNode

(PHP 5、PHP 7、PHP 8)

简介

tidy 检测到的 HTML 文件中的 HTML 节点。

类概要

final class tidyNode {
/* 属性 */
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;
/* 方法 */
private __construct()
public hasChildren(): bool
public hasSiblings(): bool
public isAsp(): bool
public isComment(): bool
public isHtml(): bool
public isJste(): bool
public isPhp(): bool
public isText(): bool
}

属性

value

节点的 HTML 表示形式,包括周围的标签。

name

HTML 节点的名称

type

节点的类型(节点类型常量 之一,例如 TIDY_NODETYPE_PHP

line

标签在文件中所在的行号

column

标签在文件中所在的列号

proprietary

指示节点是否为专有标签

id

节点的 ID(标签常量 之一,例如 TIDY_TAG_FRAME

attribute

字符串数组,表示当前节点的属性名称(作为键)。

child

tidyNode 数组,表示当前节点的子节点。

目录

添加说明

用户贡献说明

此页面没有用户贡献的说明。
To Top