mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-28 20:35:50 +08:00
95 lines
4.6 KiB
HTML
95 lines
4.6 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<title>Returns the Number of Tidy errors encountered for specified document</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.tidy-error-count" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">tidy_error_count</h1>
|
|
<p class="verinfo">(PHP 5, PHP 7, PECL tidy >= 0.5.2)</p><p class="refpurpose"><span class="refname">tidy_error_count</span> — <span class="dc-title">Returns the Number of Tidy errors encountered for specified document</span></p>
|
|
|
|
</div>
|
|
<div class="refsect1 description" id="refsect1-function.tidy-error-count-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>tidy_error_count</strong></span>
|
|
( <span class="methodparam"><span class="type"><a href="class.tidy.html" class="type tidy">tidy</a></span> <code class="parameter">$object</code></span>
|
|
) : <span class="type">int</span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
Returns the number of Tidy errors encountered for the specified document.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 parameters" id="refsect1-function.tidy-error-count-parameters">
|
|
<h3 class="title">参数</h3>
|
|
<p class="para">
|
|
<dl>
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">object</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
The <a href="class.tidy.html" class="classname">Tidy</a> 对象。
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
</dl>
|
|
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.tidy-error-count-returnvalues">
|
|
<h3 class="title">返回值</h3>
|
|
<p class="para">
|
|
Returns the number of errors.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 examples" id="refsect1-function.tidy-error-count-examples">
|
|
<h3 class="title">范例</h3>
|
|
<p class="para">
|
|
<div class="example" id="example-4875">
|
|
<p><strong>Example #1 <span class="function"><strong>tidy_error_count()</strong></span> example</strong></p>
|
|
<div class="example-contents">
|
|
<div class="phpcode"><pre><span style="color: #000000">
|
|
<span style="color: #0000BB"><?php<br />$html </span><span style="color: #007700">= </span><span style="color: #DD0000">'<p>test</i><br /><bogustag>bogus</bogustag>'</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">$tidy </span><span style="color: #007700">= </span><span style="color: #0000BB">tidy_parse_string</span><span style="color: #007700">(</span><span style="color: #0000BB">$html</span><span style="color: #007700">);<br /><br />echo </span><span style="color: #0000BB">tidy_error_count</span><span style="color: #007700">(</span><span style="color: #0000BB">$tidy</span><span style="color: #007700">) . </span><span style="color: #DD0000">"\n"</span><span style="color: #007700">; </span><span style="color: #FF8000">//1<br /><br /></span><span style="color: #007700">echo </span><span style="color: #0000BB">$tidy</span><span style="color: #007700">-></span><span style="color: #0000BB">errorBuffer</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">?></span>
|
|
</span>
|
|
</pre></div>
|
|
</div>
|
|
|
|
<div class="example-contents"><p>以上例程会输出:</p></div>
|
|
<div class="example-contents screen">
|
|
<div class="cdata"><pre>
|
|
1
|
|
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
|
|
line 1 column 8 - Warning: discarding unexpected </i>
|
|
line 2 column 1 - Error: <bogustag> is not recognized!
|
|
line 2 column 1 - Warning: discarding unexpected <bogustag>
|
|
line 2 column 16 - Warning: discarding unexpected </bogustag>
|
|
line 1 column 1 - Warning: inserting missing 'title' element
|
|
</pre></div>
|
|
</div>
|
|
</div>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 seealso" id="refsect1-function.tidy-error-count-seealso">
|
|
<h3 class="title">参见</h3>
|
|
<ul class="simplelist">
|
|
<li class="member"><span class="function"><a href="tidy_access_count.html" class="function" rel="rdfs-seeAlso">tidy_access_count()</a> - Returns the Number of Tidy accessibility warnings encountered for specified document</span></li>
|
|
<li class="member"><span class="function"><a href="tidy_warning_count.html" class="function" rel="rdfs-seeAlso">tidy_warning_count()</a> - Returns the Number of Tidy warnings encountered for specified document</span></li>
|
|
</ul>
|
|
</div>
|
|
|
|
</div></div></div></body></html> |