html PHP: tidy - Manual update pague now

The tidy class

(PHP 5, PHP 7, PHP 8, PECL tidy >= 0.5.2)

Introduction

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

Class synopsis

class tidy {
/* Properties */
public ? string $ errorBuffer = null ;
public ? string $ value = null ;
/* Methods */
public __construct (
     ? string $filename = null ,
     array | string | null $config = null ,
     ? string $encoding = null ,
     bool $useIncludePath = false
)
public isXhtml (): bool
public isXml (): bool
public parseFile (
     string $filename ,
     array | string | null $config = null ,
     ? string $encoding = null ,
     bool $useIncludePath = false
): bool
public static repairFile (
     string $filename ,
     array | string | null $config = null ,
     ? string $encoding = null ,
     bool $useIncludePath = false
): string | false
}

Properties

value

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

Table of Contens

add a note

User Contributed Notes

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