search for in the  
<tidytidy_access_count>
Last updated: Thu, 19 May 2005

ob_tidyhandler

(PHP 5)

ob_tidyhandler --  ob_start callback function to repair the buffer

Description

string ob_tidyhandler ( string input [, int mode] )

ob_tidyhandler() is intended to be used as a callback function for ob_start() to repair the buffer.

Example 1. ob_tidyhandler() example

<?php
ob_start
('ob_tidyhandler');

echo
'<p>test</i>';
?>

The above example will output:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title></title>
</head>
<body>
<p>test</p>
</body>
</html>

See also ob_start().



User Contributed Notes
ob_tidyhandler
There are no user contributed notes for this page.

<tidytidy_access_count>
 Last updated: Thu, 19 May 2005
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: The Server Pages
Last updated: Thu May 19 17:35:34 2005 CDT