tidy::getOpt
tidy::getOpt
tidy_getopt
(PHP 5, PHP 7, PECL tidy >= 0.5.2)
tidy :: getOpt - tidy_getopt - 返回整洁文档的指定配置选项的值
描述
面向对象的风格
mixed tidy::getOpt ( string $option )
程序风格
mixed tidy_getopt ( tidy $object , string $option )
返回指定的值option
指定的整洁object
。
参数
object
整洁的对象。
option
您将在以下位置找到每个配置选项及其类型的列表:»http://tidy.sourceforge.net/docs/quickref.html。
返回值
返回指定的值option
。返回类型取决于指定的类型。
例子
Example #1 tidy
_
getopt() example
<?php
$html ='<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html><head><title>Title</title></head>
<body>
<p><img src="img.png"></p>
</body></html>';
$config = array('accessibility-check' => 3,
'alt-text' => 'some text'
$tidy = new tidy(
$tidy->parseString($html, $config
var_dump($tidy->getOpt('accessibility-check') //integer
var_dump($tidy->getOpt('lower-literals') //boolean
var_dump($tidy->getOpt('alt-text') //string
?>
上面的例子将输出:
int(3)
bool(true)
string(9) "some text"
← tidy::getHtmlVer
tidy::getOptDoc →