php man page for tidy_get_status

Query: tidy_get_status

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

TIDY_GET_STATUS(3)							 1							TIDY_GET_STATUS(3)

tidy::getStatus - Get status of specified document

       Object oriented style

SYNOPSIS
int tidy::getStatus (void )
DESCRIPTION
Procedural style int tidy_get_status (tidy $object) Returns the status for the specified tidy $object.
PARAMETERS
o $object - The Tidy object.
RETURN VALUES
Returns 0 if no error/warning was raised, 1 for warnings or accessibility errors, or 2 for errors.
EXAMPLES
Example #1 tidy_get_status(3) example <?php $html = '<p>paragraph</i>'; $tidy = new tidy(); $tidy->parseString($html); $tidy2 = new tidy(); $html2 = '<bogus>test</bogus>'; $tidy2->parseString($html2); echo $tidy->getStatus(); //1 echo $tidy2->getStatus(); //2 ?> PHP Documentation Group TIDY_GET_STATUS(3)
Related Man Pages
tidy_get_html(3) - php
tidy_get_opt_doc(3) - php
tidy.errorbuffer(3) - php
tidy.html(3) - php
tidy.getopt(3) - php
Similar Topics in the Unix Linux Community
Simple rules of the UNIX.COM forums:
Rules for Homework &amp; Coursework Questions Forum
Coming Soon: Upgrade Forum Software (Dec 31 - Jan 1)
The Order of the Wizard's Hat - Lifetime Achievement Award 2019 - Congrats to Don Cragun
Denial Of Service Attack Update