ob_tidyhandler
(PHP 5)
ob_tidyhandler — تابع بازگشتی ob_start برای تعمیر بافر
Description
string ob_tidyhandler
( string $input
[, int $mode
] )
تابع بازگشتی ob_start() برای تعمیر بافر.
Parameters
- input
-
بافر.
- mode
-
حالت بافر.
Return Values
بازگرداندن بافر تغییر یافته.
Examples
Example #1 مثال ob_tidyhandler()
<?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>
There are no user contributed notes for this page.
