tidy_setopt
tidy_setopt
(PECL tidy >= 0.5.2)
tidy_setopt - 更新指定整洁文档的配置设置
描述
bool tidy_setopt ( string $option , mixed $value )
tidy_setopt()
option
用新的更新指定value
。
参数
option
整洁的选项名称。可在http://tidy.sourceforge.net/docs/quickref.html找到可用的配置选项列表。
value
整洁的选项名称。
返回值
TRUE
成功或FALSE
失败时返回。
例子
Example #1 tidy
_
setopt() example
<?php
$html = '<p>test</i>';
$tidy = tidy_parse_string($html
tidy_setopt('indent', FALSE
?>
注意
注意
:此功能仅适用于Tidy 1.0。它在Tidy 2.0中变得过时了,因此已被删除。