mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Removing exotic tags, replace them with more common ones.
Eg use <varname> instead of <symbol> for PHP variable names. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@69761 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
2a17f8a669
commit
c86894b62c
4 changed files with 11 additions and 12 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.38 $ -->
|
||||
<!-- $Revision: 1.39 $ -->
|
||||
<chapter id="configuration">
|
||||
<title>Configuration</title>
|
||||
|
||||
|
@ -686,7 +686,7 @@ include_path=".;c:\www\phplib"
|
|||
<listitem>
|
||||
<para>
|
||||
If enabled, the last error message will always be present in the
|
||||
global variable <symbol>$php_errormsg</symbol>.</para>
|
||||
global variable <varname>$php_errormsg</varname>.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.75 $ -->
|
||||
<!-- $Revision: 1.76 $ -->
|
||||
<reference id="ref.image">
|
||||
<title>Image functions</title>
|
||||
<titleabbrev>Image</titleabbrev>
|
||||
|
@ -53,7 +53,7 @@
|
|||
<acronym>PSD</acronym> or <acronym>BMP</acronym> image file and
|
||||
return the dimensions along with the file type and a height/width
|
||||
text string to be used inside a normal <acronym>HTML</acronym>
|
||||
<sgmltag>IMG</sgmltag> tag.
|
||||
<literal>IMG</literal> tag.
|
||||
</para>
|
||||
<para>
|
||||
Returns an array with 4 elements. Index 0 contains the width of
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.34 $ -->
|
||||
<!-- $Revision: 1.35 $ -->
|
||||
<reference id="ref.mnogo">
|
||||
<title>mnoGoSearch Functions</title>
|
||||
<titleabbrev>mnoGoSearch</titleabbrev>
|
||||
|
@ -1230,7 +1230,7 @@ if (!udm_load_ispell_data($udm,UDM_ISPELL_TYPE_SERVER,'','',1)) {
|
|||
UDM_PARAM_VARDIR - specifies a custom path to directory where indexer
|
||||
stores data when using built-in database and in cache mode.
|
||||
By default <literal>/var</literal> directory of
|
||||
<application>mnoGoSearch</application> installation is used. Can have
|
||||
mnoGoSearch installation is used. Can have
|
||||
only string values. The parameter is available in PHP 4.1.0 or later.
|
||||
</simpara>
|
||||
</listitem>
|
||||
|
@ -1239,7 +1239,7 @@ if (!udm_load_ispell_data($udm,UDM_ISPELL_TYPE_SERVER,'','',1)) {
|
|||
UDM_PARAM_VARDIR - specifies a custom path to directory where indexer
|
||||
stores data when using built-in database and in cache mode.
|
||||
By default <literal>/var</literal> directory of
|
||||
<application>mnoGoSearch</application> installation is used. Can have
|
||||
mnoGoSearch installation is used. Can have
|
||||
only string values. The parameter is available in PHP 4.1.0 or later.
|
||||
</simpara>
|
||||
</listitem>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.159 $ -->
|
||||
<!-- $Revision: 1.160 $ -->
|
||||
<reference id="ref.strings">
|
||||
<title>String functions</title>
|
||||
<titleabbrev>Strings</titleabbrev>
|
||||
|
@ -685,10 +685,9 @@ $encoded = strtr($str, $trans);
|
|||
]]>
|
||||
</programlisting>
|
||||
</example>
|
||||
The <literal>$encoded</literal> variable will now contain: "Hallo
|
||||
&<sgmltag>amp</sgmltag>;
|
||||
&<sgmltag>lt</sgmltag>;Frau&<sgmltag>gt</sgmltag>;
|
||||
&<sgmltag>amp</sgmltag>; Kr&<sgmltag>auml</sgmltag>;mer".
|
||||
The <literal>$encoded</literal> variable will now contain:
|
||||
<literal>"Hallo &amp; &lt;Frau&gt; &amp;
|
||||
Kr&auml;mer".</literal>
|
||||
</para>
|
||||
<para>
|
||||
The cool thing is using <function>array_flip</function> to change
|
||||
|
|
Loading…
Reference in a new issue