mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
Improve table introduced with r339499
We replace the quotes with <literal>s and make a real table caption. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@339500 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
ef1b0b43d3
commit
a10fa06420
1 changed files with 13 additions and 13 deletions
|
@ -34,8 +34,8 @@
|
|||
You may have to use <function>mb_encode_numericentity</function> instead.
|
||||
</para>
|
||||
<para>
|
||||
The translations performed are:
|
||||
<informaltable>
|
||||
<table>
|
||||
<title>Performed translations</title>
|
||||
<tgroup cols="2">
|
||||
<thead>
|
||||
<row>
|
||||
|
@ -45,33 +45,33 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>'&' (ampersand)</entry>
|
||||
<entry>'&amp;'</entry>
|
||||
<entry><literal>&</literal> (ampersand)</entry>
|
||||
<entry><literal>&amp;</literal></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>'"' (double quote)</entry>
|
||||
<entry>'&quot;' when <constant>ENT_NOQUOTES</constant></entry>
|
||||
<entry><literal>"</literal> (double quote)</entry>
|
||||
<entry><literal>&quot;</literal> when <constant>ENT_NOQUOTES</constant></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>"'" (single quote)</entry>
|
||||
<entry><literal>'</literal> (single quote)</entry>
|
||||
<entry>
|
||||
'&#039;' (for <constant>ENT_HTML401</constant>) or &apos; (for
|
||||
<literal>&#039;</literal> (for <constant>ENT_HTML401</constant>) or <literal>&apos;</literal> (for
|
||||
<constant>ENT_XML1</constant>, <constant>ENT_XHTML</constant> or
|
||||
<constant>ENT_HTML5</constant>), but only when
|
||||
<constant>ENT_QUOTES</constant> is set
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>'<' (less than)</entry>
|
||||
<entry>'&lt;'</entry>
|
||||
<entry><literal><</literal> (less than)</entry>
|
||||
<entry><literal>&lt;</literal></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>'>' (greater than)</entry>
|
||||
<entry>'&gt;'</entry>
|
||||
<entry><literal>></literal> (greater than)</entry>
|
||||
<entry><literal>&gt;</literal></entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</informaltable>
|
||||
</table>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
|
Loading…
Reference in a new issue