PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

tidy_access_count> <Tidy 関数
Last updated: Fri, 03 Oct 2008

view this page in

ob_tidyhandler

(PHP 5)

ob_tidyhandlerバッファを修正するための ob_start コールバック関数

説明

string ob_tidyhandler ( string $input [, int $mode ] )

ob_tidyhandler() は、バッファを修正するための ob_start() として使用されることを意図しています。

パラメータ

input

バッファ。

mode

バッファのモード。

返り値

修正したバッファを返します。

例1 ob_tidyhandler() の例

<?php
ob_start
('ob_tidyhandler');

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

上の例の出力は以下となります。

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

参考



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

tidy_access_count> <Tidy 関数
Last updated: Fri, 03 Oct 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites