tidy::__construct Constructs a new tidy object &reftitle.description; tidytidy::__construct stringfilename mixedconfig stringencoding booluse_include_path tidy::__construct constructs a new tidy object. &reftitle.parameters; filename If the filename parameter is given, this function will also read that file and initialize the object with the file, acting like tidy_parse_file. config The config config can be passed either as an array or as a string. If a string is passed, it is interpreted as the name of the configuration file, otherwise, it is interpreted as the options themselves. For an explanation about each option, visit &url.tidy.conf;. encoding The encoding parameter sets the encoding for input/output documents. The possible values for encoding are: ascii, latin0, latin1, raw, utf8, iso2022, mac, win1252, ibm858, utf16, utf16le, utf16be, big5, and shiftjis. use_include_path Search for the file in the include_path. &reftitle.returnvalues; Returns the new tidy instance. &reftitle.examples; <function>tidy::__construct</function> example title

paragraph text

HTML; $tidy = new tidy; $tidy->parseString($html); $tidy->CleanRepair(); if ($tidy->errorBuffer) { echo "The following errors were detected:\n"; echo $tidy->errorBuffer; } ?> ]]>
&example.outputs; is not recognized! line 8 column 14 - Warning: discarding unexpected ]]>
&reftitle.seealso; tidy_parse_file tidy_parse_string