mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
fix spelling
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@278849 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
50acba24dc
commit
f19892b5cd
8 changed files with 22 additions and 22 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<refentry xml:id="mysqli.debug" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>mysqli::debug</refname>
|
||||
|
@ -51,7 +51,7 @@
|
|||
&reftitle.notes;
|
||||
<note>
|
||||
<para>
|
||||
To use the <function>mysqli_debug</function> function you must complile
|
||||
To use the <function>mysqli_debug</function> function you must compile
|
||||
the MySQL client library to support debugging.
|
||||
</para>
|
||||
</note>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<refentry xml:id="mysqli.get-host-info" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>mysqli->host_info</refname>
|
||||
|
@ -14,15 +14,15 @@
|
|||
<ooclass><classname>mysqli</classname></ooclass>
|
||||
<fieldsynopsis><type>string</type><varname>host_info</varname></fieldsynopsis>
|
||||
</classsynopsis>
|
||||
<para>Procdural style:</para>
|
||||
<para>Procedural style:</para>
|
||||
<methodsynopsis>
|
||||
<type>string</type><methodname>mysqli_get_host_info</methodname>
|
||||
<methodparam><type>mysqli</type><parameter>link</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
The <function>mysqli_get_host_info</function> function returns a string
|
||||
describing the connection represented by the <parameter>link</parameter>
|
||||
parameter is using (including the server host name).
|
||||
Returns a string describing the connection represented by
|
||||
the <parameter>link</parameter> parameter is using (including
|
||||
the server host name).
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<refentry xml:id="mysqli.prepare" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>mysqli::prepare</refname>
|
||||
|
@ -72,8 +72,8 @@
|
|||
impossible to determine the parameter type. It's not allowed to
|
||||
compare marker with <literal>NULL</literal> by
|
||||
<literal>? IS NULL</literal> too. In general, parameters are legal
|
||||
only in Data Manipulation Languange (DML) statements, and not in Data
|
||||
Defination Language (DDL) statements.
|
||||
only in Data Manipulation Language (DML) statements, and not in Data
|
||||
Definition Language (DDL) statements.
|
||||
</para>
|
||||
</note>
|
||||
</listitem>
|
||||
|
@ -85,7 +85,7 @@
|
|||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
<function>mysqli_prepare</function> returns a statement object or &false; if an error occured.
|
||||
<function>mysqli_prepare</function> returns a statement object or &false; if an error occurred.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<refentry xml:id="mysqli.store-result" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>mysqli::store_result</refname>
|
||||
|
@ -50,7 +50,7 @@
|
|||
<function>mysqli_errno</function> returns a non zero value, or if
|
||||
<function>mysqli_field_count</function> returns a non zero value.
|
||||
Also possible reason for this function returning &false; after
|
||||
successfull call to <function>mysqli_query</function> can be too large
|
||||
successful call to <function>mysqli_query</function> can be too large
|
||||
result set (memory for it cannot be allocated). If
|
||||
<function>mysqli_field_count</function> returns a non-zero value, the
|
||||
statement should have produced a non-empty result set.
|
||||
|
@ -64,7 +64,7 @@
|
|||
<para>
|
||||
Although it is always good practice to free the memory used by the result
|
||||
of a query using the <function>mysqli_free_result</function> function,
|
||||
when transfering large result sets using the
|
||||
when transferring large result sets using the
|
||||
<function>mysqli_store_result</function> this becomes particularly
|
||||
important.
|
||||
</para>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- $Revision: 1.5 $ -->
|
||||
<refentry xml:id="mysqli-result.fetch-field-direct" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>mysqli_result::fetch_field_direct</refname>
|
||||
|
@ -88,7 +88,7 @@
|
|||
</row>
|
||||
<row>
|
||||
<entry>length</entry>
|
||||
<entry>The width of the field, as specified in the tabl definition.</entry>
|
||||
<entry>The width of the field, as specified in the table definition.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>charsetnr</entry>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<refentry xml:id="mysqli-stmt.execute" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>mysqli_stmt->execute</refname>
|
||||
|
@ -23,7 +23,7 @@
|
|||
Executes a query that has been previously prepared using the
|
||||
<function>mysqli_prepare</function> function. When executed any
|
||||
parameter markers which exist will automatically be replaced with the
|
||||
appropiate data.
|
||||
appropriate data.
|
||||
</para>
|
||||
<para>
|
||||
If the statement is <literal>UPDATE</literal>, <literal>DELETE</literal>,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- $Revision: 1.5 $ -->
|
||||
<refentry xml:id="mysqli-stmt.fetch" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>mysqli_stmt::fetch</refname>
|
||||
|
@ -65,7 +65,7 @@
|
|||
</row>
|
||||
<row>
|
||||
<entry>&false;</entry>
|
||||
<entry>Error occured</entry>
|
||||
<entry>Error occurred</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>&null;</entry>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- $Revision: 1.5 $ -->
|
||||
<refentry xml:id="mysqli-stmt.prepare" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>mysqli_stmt::prepare</refname>
|
||||
|
@ -66,7 +66,7 @@
|
|||
or to specify both operands of a binary operator such as the <literal>=</literal>
|
||||
equal sign. The latter restriction is necessary because it would be impossible
|
||||
to determine the parameter type. In general, parameters are legal only in Data
|
||||
Manipulation Languange (DML) statements, and not in Data Definition Language
|
||||
Manipulation Language (DML) statements, and not in Data Definition Language
|
||||
(DDL) statements.
|
||||
</para>
|
||||
</note>
|
||||
|
|
Loading…
Reference in a new issue