mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
Fix typo & literal tag
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@324714 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
f850d69654
commit
568d95f88b
6 changed files with 10 additions and 10 deletions
|
@ -101,7 +101,7 @@ sour holds lemon
|
|||
]]>
|
||||
</screen>
|
||||
<para>
|
||||
You may notice that the key 'sweet' is never displayed. Any key that holds an
|
||||
You may notice that the key '<literal>sweet</literal>' is never displayed. Any key that holds an
|
||||
<type>array</type> will not be passed to the function.
|
||||
</para>
|
||||
</example>
|
||||
|
|
|
@ -148,7 +148,7 @@
|
|||
<listitem>
|
||||
<simpara>
|
||||
This is a parser option allowing argument quoting with
|
||||
double quotes (")
|
||||
double quotes (<literal>"</literal>)
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
@ -160,7 +160,7 @@
|
|||
<listitem>
|
||||
<simpara>
|
||||
This is a parser option allowing argument quoting with
|
||||
single quotes (')
|
||||
single quotes (<literal>'</literal>)
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
@ -172,7 +172,7 @@
|
|||
<listitem>
|
||||
<simpara>
|
||||
This is a parser option allowing argument quoting with
|
||||
HTML version of double quotes (&quot;)
|
||||
HTML version of double quotes (<literal>&quot;</literal>)
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
<varname remap="structfield">content_handling</varname> optional -
|
||||
Gives the callback used for modification of the content. Object
|
||||
Oriented Notation supported only since 0.10.1
|
||||
callback prototype is string name(string $content, string $argument)
|
||||
callback prototype is string name<literal>(string $content, string $argument)</literal>
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
@ -73,7 +73,7 @@
|
|||
<varname remap="structfield">param_handling</varname> optional -
|
||||
Gives the callback used for modification of the argument. Object
|
||||
Oriented Notation supported only since 0.10.1
|
||||
callback prototype is string name(string $content, string $argument)
|
||||
callback prototype is string name<literal>(string $content, string $argument)</literal>
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<methodparam><type>resource</type><parameter>filehandle</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Writes the single character \x00 to indicate End of compiled data.
|
||||
Writes the single character <literal>\x00</literal> to indicate End of compiled data.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<preface xml:id="intro.com">
|
||||
&reftitle.intro;
|
||||
<para>
|
||||
COM is an acronym for Component Object Model; it is an object orientated
|
||||
COM is an acronym for <literal>Component Object Model</literal>; it is an object orientated
|
||||
layer (and associated services) on top of DCE RPC (an open standard) and
|
||||
defines a common calling convention that enables code written in any
|
||||
language to call and interoperate with code written in any other language
|
||||
|
@ -28,7 +28,7 @@
|
|||
how the object works. The PHP COM extension utilizes the OLE
|
||||
Automation interfaces to allow you to create and call compatible objects
|
||||
from your scripts. Technically speaking, this should really be called
|
||||
the "OLE Automation Extension for PHP", since not all COM objects are OLE
|
||||
the "<literal>OLE Automation Extension for PHP</literal>", since not all COM objects are OLE
|
||||
compatible.
|
||||
</para>
|
||||
<para>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<function>com_get_active_object</function> is similar to creating a new
|
||||
instance of a <xref linkend="class.com"/> object, except that it will
|
||||
only return an object to your script if the object is already running.
|
||||
OLE applications use something known as the Running Object Table to
|
||||
OLE applications use something known as the "<literal>Running Object Table</literal>" to
|
||||
allow well-known applications to be launched only once; this function
|
||||
exposes the COM library function GetActiveObject() to get a handle on a
|
||||
running instance.
|
||||
|
|
Loading…
Reference in a new issue