Nuke tabs

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@165127 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jakub Vrana 2004-08-03 17:25:34 +00:00
parent b641bfd5d9
commit 647ee5c6a2
52 changed files with 175 additions and 175 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<refentry id="function.variant-get-type">
<refnamediv>
<refname>variant_get_type</refname>
@ -9,7 +9,7 @@
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>variant_get_type</methodname>
<methodparam><type>object</type><parameter>variant</parameter></methodparam>
<methodparam><type>object</type><parameter>variant</parameter></methodparam>
</methodsynopsis>
<para>
This function returns an integer value that indicates the type of

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.9 $ -->
<!-- $Revision: 1.10 $ -->
<!-- splitted from ./en/functions/dir.xml, last change in rev 1.2 -->
<refentry id="function.chdir">
<refnamediv>
@ -22,15 +22,15 @@
<programlisting role="php">
<![CDATA[
<?php
// current directory
echo getcwd() . "\n";
chdir('public_html');
// current directory
echo getcwd() . "\n";
?>
]]>
</programlisting>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.7 $ -->
<!-- $Revision: 1.8 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id='function.domelement-get-elements-by-tagname'>
<refnamediv>
@ -35,8 +35,8 @@ $root = $dom->document_element();
$node_array = $root->get_elements_by_tagname("element");
for ($i = 0; $i<count($node_array); $i++) {
$node = $node_array[$i];
echo "The element[$i] is: " . $node->get_content();
$node = $node_array[$i];
echo "The element[$i] is: " . $node->get_content();
}
?>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.39 -->
<refentry id='function.domnode-get-content'>
<refnamediv>
@ -33,8 +33,8 @@ $root = $dom->document_element();
$node_array = $root->get_elements_by_tagname("element");
for ($i = 0; $i<count($node_array); $i++) {
$node = $node_array[$i];
echo "The element[$i] is: " . $node->get_content();
$node = $node_array[$i];
echo "The element[$i] is: " . $node->get_content();
}
?>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.16 $ -->
<!-- $Revision: 1.17 $ -->
<reference id="ref.domxml">
<title>DOM XML Functions</title>
<titleabbrev>DOM XML</titleabbrev>
@ -402,8 +402,8 @@
<entry><function>DomElement_set_attribute_node</function></entry>
<entry></entry>
</row>
-->
-->
<row>
<entry>get_elements_by_tagname</entry>
<entry><function>DomElement_get_elements_by_tagname</function></entry>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.10 $ -->
<!-- $Revision: 1.11 $ -->
<!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.2 -->
<refentry id="function.fwrite">
<refnamediv>
@ -70,7 +70,7 @@ if (is_writable($filename)) {
echo "Success, wrote ($somecontent) to file ($filename)";
fclose($handle);
} else {
echo "The file $filename is not writable";
}

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.11 $ -->
<!-- $Revision: 1.12 $ -->
<!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.2 -->
<refentry id="function.is-executable">
<refnamediv>
@ -42,7 +42,7 @@ if (is_executable($file)) {
&note.clearstatcache;
&tip.fopen-wrapper.stat;
&tip.fopen-wrapper.stat;
<para>
See also <function>is_file</function> and

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<refentry id="function.ibase-name-result">
<refnamediv>
<refname>ibase_name_result</refname>
@ -23,13 +23,13 @@
<![CDATA[
<?php
$result = ibase_query("SELECT field1,field2 FROM table FOR UPDATE");
ibase_name_result($result, "my_cursor");
ibase_name_result($result, "my_cursor");
$updateqry = ibase_prepare("UPDATE table SET field2 = ? WHERE CURRENT OF my_cursor");
for ($i = 0; ibase_fetch_row($result); ++$i) {
ibase_execute($updateqry, $i);
}
$updateqry = ibase_prepare("UPDATE table SET field2 = ? WHERE CURRENT OF my_cursor");
for ($i = 0; ibase_fetch_row($result); ++$i) {
ibase_execute($updateqry, $i);
}
?>
]]>
</programlisting>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- $Revision: 1.7 $ -->
<refentry id="function.ibase-set-event-handler">
<refnamediv>
<refname>ibase_set_event_handler</refname>
@ -22,8 +22,8 @@
events. The callback is called with the event name and the link resource as arguments
whenever one of the specified events is posted by the database. The callback must
return &false; if the event handler should be canceled. Any other return value is ignored.
</para>
<para>
</para>
<para>
<informalexample>
<programlisting role="php">
<![CDATA[

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<section id="ibase.configuration">
&reftitle.runtime;
&extension.runtime;
@ -72,7 +72,7 @@
<function>ini_set</function>.
</para>
&ini.descriptions.title;
&ini.descriptions.title;
<para>
<variablelist>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<reference id="ref.id3">
<title>ID3 Functions</title>
<titleabbrev>id3</titleabbrev>
@ -39,7 +39,7 @@
&no.resource;
</section>
&reference.id3.constants;
&reference.id3.constants;
</partintro>
&reference.id3.functions;

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.7 $ -->
<!-- $Revision: 1.8 $ -->
<!-- splitted from ./en/functions/mbstring.xml, last change in rev 1.1 -->
<refentry id="function.mb-convert-kana">
<refnamediv>
@ -31,8 +31,8 @@
omitted, internal character encoding is used.
</para>
<para>
Specify with combination of following options. Default
value is <literal>KV</literal>.
Specify with combination of following options. Default
value is <literal>KV</literal>.
<table>
<title>Applicable Conversion Options</title>
<tgroup cols="2">
@ -77,8 +77,8 @@
<entry><literal>A</literal></entry>
<entry>
Convert "han-kaku" alphabets and numbers to "zen-kaku"
(Characters included in "a", "A" options are
U+0021 - U+007E excluding U+0022, U+0027, U+005C, U+007E)
(Characters included in "a", "A" options are
U+0021 - U+007E excluding U+0022, U+0027, U+005C, U+007E)
</entry>
</row>
<row>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.20 $ -->
<!-- $Revision: 1.21 $ -->
<reference id="ref.mbstring">
<title>Multibyte String Functions</title>
<titleabbrev>Multibyte String</titleabbrev>
@ -459,14 +459,14 @@ ob_start('mb_output_handler');
</tgroup>
</table>
</para>
<note>
<para>
It is not recommended to use the function overloading option in
the per-directory context, because it's not confirmed yet to be
stable enough in a production environment and may lead to undefined
behaviour.
</para>
</note>
<note>
<para>
It is not recommended to use the function overloading option in
the per-directory context, because it's not confirmed yet to be
stable enough in a production environment and may lead to undefined
behaviour.
</para>
</note>
</section>
<section id="mbstring.ja-basic">

View file

@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<!-- Generated by xml_proto.php v2.0. Found in /scripts directory of phpdoc. -->
<refentry id="function.mcve-preauth">
<refnamediv>
@ -23,7 +23,7 @@
<methodparam><type>string</type><parameter>zip</parameter></methodparam>
<methodparam><type>string</type><parameter>cv</parameter></methodparam>
<methodparam><type>string</type><parameter>comments</parameter></methodparam>
<methodparam><type> string</type><parameter>clerkid</parameter></methodparam>
<methodparam><type>string</type><parameter>clerkid</parameter></methodparam>
<methodparam><type>string</type><parameter>stationid</parameter></methodparam>
<methodparam><type>int</type><parameter>ptrannum</parameter></methodparam>
</methodsynopsis>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/msession.xml, last change in rev 1.1 -->
<refentry id="function.msession-count">
<refnamediv>
@ -10,7 +10,7 @@
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>msession_count</methodname>
<void/>
<void/>
</methodsynopsis>
&warn.undocumented.func;
</refsect1>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/msession.xml, last change in rev 1.1 -->
<refentry id="function.msession-disconnect">
<refnamediv>
@ -10,7 +10,7 @@
<title>Description</title>
<methodsynopsis>
<type>void</type><methodname>msession_disconnect</methodname>
<void/>
<void/>
</methodsynopsis>
&warn.undocumented.func;
</refsect1>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/msession.xml, last change in rev 1.1 -->
<refentry id="function.msession-list">
<refnamediv>
@ -10,7 +10,7 @@
<title>Description</title>
<methodsynopsis>
<type>array</type><methodname>msession_list</methodname>
<void/>
<void/>
</methodsynopsis>
&warn.undocumented.func;
</refsect1>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/msql.xml, last change in rev 1.2 -->
<refentry id="function.msql-fetch-field">
<refnamediv>
@ -27,32 +27,32 @@
<itemizedlist>
<listitem>
<simpara>
name - column name
name - column name
</simpara>
</listitem>
<listitem>
<simpara>
table - name of the table the column belongs to
table - name of the table the column belongs to
</simpara>
</listitem>
<listitem>
<simpara>
not_null - 1 if the column cannot be &null;
not_null - 1 if the column cannot be &null;
</simpara>
</listitem>
<listitem>
<simpara>
primary_key - 1 if the column is a primary key
primary_key - 1 if the column is a primary key
</simpara>
</listitem>
<listitem>
<simpara>
unique - 1 if the column is a unique key
unique - 1 if the column is a unique key
</simpara>
</listitem>
<listitem>
<simpara>
type - the type of the column
type - the type of the column
</simpara>
</listitem>
</itemizedlist>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/mssql.xml, last change in rev 1.3 -->
<refentry id="function.mssql-field-length">
<refnamediv>
@ -13,11 +13,11 @@
<methodparam><type>resource</type><parameter>result</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>offset</parameter></methodparam>
</methodsynopsis>
<para>
This function returns the length of field no. <parameter>offset</parameter> in
result <parameter>result</parameter>. If <parameter>offset</parameter> is omitted,
the current field is used.
</para>
<para>
This function returns the length of field no. <parameter>offset</parameter> in
result <parameter>result</parameter>. If <parameter>offset</parameter> is omitted,
the current field is used.
</para>
<note>
<title>Note to Win32 Users</title>
<simpara>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.11 $ -->
<!-- $Revision: 1.12 $ -->
<refentry id="function.mysqli-change-user">
<refnamediv>
<refname>mysqli_change_user</refname>
@ -96,9 +96,9 @@ if ($result = $mysqli->query("SELECT DATABASE()")) {
if ($result = $mysqli->query("SELECT @a")) {
$row = $result->fetch_row();
if ($row[0] === NULL) {
printf("Value of variable a is NULL\n");
}
if ($row[0] === NULL) {
printf("Value of variable a is NULL\n");
}
$result->close();
}
@ -136,9 +136,9 @@ if ($result = mysqli_query($link, "SELECT DATABASE()")) {
if ($result = mysqli_query($link, "SELECT @a")) {
$row = mysqli_fetch_row($result);
if ($row[0] === NULL) {
printf("Value of variable a is NULL\n");
}
if ($row[0] === NULL) {
printf("Value of variable a is NULL\n");
}
mysqli_free_result($result);
}

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.12 $ -->
<!-- $Revision: 1.13 $ -->
<refentry id="function.mysqli-fetch-lengths">
<refnamediv>
<refname>mysqli_fetch_lengths</refname>
@ -88,7 +88,7 @@ $query = "SELECT * from Country ORDER BY Code LIMIT 1";
if ($result = mysqli_query($link, $query)) {
$row = mysqli_fetch_row($result);
$row = mysqli_fetch_row($result);
/* display column lengths */
$lengths = mysqli_fetch_lengths($result);

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.5 $ -->
<!-- $Revision: 1.6 $ -->
<refentry id="function.mysqli-stmt-affected-rows">
<refnamediv>
<refname>mysqli_stmt_affected_rows</refname>
@ -82,7 +82,7 @@ if ($stmt = $mysqli->prepare($query)) {
/* execute statement */
$stmt->execute();
printf("rows inserted: %d\n", $stmt->affected_rows);
printf("rows inserted: %d\n", $stmt->affected_rows);
/* close statement */
$stmt->close();
@ -122,7 +122,7 @@ if ($stmt = mysqli_prepare($link, $query)) {
/* execute statement */
mysqli_stmt_execute($stmt);
printf("rows inserted: %d\n", mysqli_stmt_affected_rows($stmt));
printf("rows inserted: %d\n", mysqli_stmt_affected_rows($stmt));
/* close statement */
mysqli_stmt_close($stmt);

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- $Revision: 1.7 $ -->
<section id="network.constants">
&reftitle.constants;
&extension.constants.core;
@ -209,7 +209,7 @@
<entry>Any Resource Record. On most systems
this returns all resource records, however
it should not be counted upon for critical
uses. Try DNS_ALL instead.</entry>
uses. Try DNS_ALL instead.</entry>
</row>
<row>
<entry>DNS_AAAA</entry>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.7 $ -->
<!-- $Revision: 1.8 $ -->
<!-- splitted from ./en/functions/nis.xml, last change in rev 1.2 -->
<refentry id="function.yp-next">
<refnamediv>
@ -27,7 +27,7 @@
$entry = yp_next($domain, "passwd.byname", "joe");
if (!$entry) {
echo "No more entries found\n";
echo "No more entries found\n";
echo "<!--" . yp_errno() . ": " . yp_err_string() . "-->";
}

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.5 $ -->
<!-- $Revision: 1.6 $ -->
<refentry id="function.oci-connect">
<refnamediv>
<refname>oci_connect</refname>
@ -12,7 +12,7 @@
<methodparam><type>string</type><parameter>username</parameter></methodparam>
<methodparam><type>string</type><parameter>password</parameter></methodparam>
<methodparam choice="opt"><type>string</type><parameter>db</parameter></methodparam>
<methodparam choice="opt"><type>string</type><parameter>charset</parameter></methodparam>
<methodparam choice="opt"><type>string</type><parameter>charset</parameter></methodparam>
</methodsynopsis>
<para>
<function>oci_connect</function> returns a connection identifier

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.14 $ -->
<!-- $Revision: 1.15 $ -->
<!--
DO NOT TRANSLATE THIS FILE.
@ -61,8 +61,8 @@ PLEASE, TRANSLATE THE APPROPRIATE NEW FILE.
$conn = OCILogon("scott", "tiger");
$stmt = OCIParse($conn, "insert into emp (empno, ename) " .
"values (:empno,:ename) " .
"returning ROWID into :rid");
"values (:empno,:ename) " .
"returning ROWID into :rid");
$data = array(1111 => "Larry", 2222 => "Bill", 3333 => "Jim");
@ -79,8 +79,8 @@ OCIBindByName($update, ":sal", $sal, 32);
$sal = 10000;
while (list($empno, $ename) = each($data)) {
OCIExecute($stmt);
OCIExecute($update);
OCIExecute($stmt);
OCIExecute($update);
}
$rowid->free();
@ -91,7 +91,7 @@ OCIFreeStatement($stmt);
$stmt = OCIParse($conn, "select * from emp where empno in (1111,2222,3333)");
OCIExecute($stmt);
while (OCIFetchInto($stmt, &$arr, OCI_ASSOC)) {
var_dump($arr);
var_dump($arr);
}
OCIFreeStatement($stmt);

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.8 $ -->
<!-- $Revision: 1.9 $ -->
<!--
DO NOT TRANSLATE THIS FILE.
@ -24,8 +24,8 @@ PLEASE, TRANSLATE THE APPROPRIATE NEW FILE.
<function>ocicolumnisnull</function> returns &true; if the returned
column <parameter>column</parameter> in the result from the
statement <parameter>stmt</parameter> is &null;. You can either use
the column-number (1-Based) or the column-name, in uppercase, for the
<parameter>col</parameter> parameter.
the column-number (1-Based) or the column-name, in uppercase, for the
<parameter>col</parameter> parameter.
</para>
<note>
<para>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.9 $ -->
<!-- $Revision: 1.10 $ -->
<!--
DO NOT TRANSLATE THIS FILE.
@ -23,8 +23,8 @@ PLEASE, TRANSLATE THE APPROPRIATE NEW FILE.
<para>
<function>ocicolumnsize</function> returns the size of the column
as given by Oracle. You can either use
the column-number (1-Based) or the column-name for the
<parameter>column</parameter> parameter.
the column-number (1-Based) or the column-name for the
<parameter>column</parameter> parameter.
</para>
<para>
<example>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.12 $ -->
<!-- $Revision: 1.13 $ -->
<!--
DO NOT TRANSLATE THIS FILE.
@ -128,13 +128,13 @@ Upload file: <input type="file" name="lob_upload" /><br />
$conn = OCILogon($user, $password);
$stmt = OCIParse($conn, "begin save_data(:key, :data); end;");
$clob = OCINewDescriptor($conn, OCI_D_LOB);
OCIBindByName($stmt, ':key', $key);
OCIBindByName($stmt, ':key', $key);
OCIBindByName($stmt, ':data', $clob, -1, OCI_B_CLOB);
$clob->WriteTemporary($data);
OCIExecute($stmt, OCI_DEFAULT);
OCICommit($conn);
$clob->close();
$clob->free();
$clob->WriteTemporary($data);
OCIExecute($stmt, OCI_DEFAULT);
OCICommit($conn);
$clob->close();
$clob->free();
OCIFreeStatement($stmt);
?>
]]>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.7 $ -->
<!-- $Revision: 1.8 $ -->
<!--
DO NOT TRANSLATE THIS FILE.
@ -22,10 +22,10 @@ PLEASE, TRANSLATE THE APPROPRIATE NEW FILE.
</methodsynopsis>
<para>
<function>ociresult</function> returns the data for column
<parameter>column</parameter> in the current row (see
<function>ocifetch</function>). <function>ociresult</function> will
return everything as strings except for abstract types (ROWIDs,
LOBs and FILEs).
<parameter>column</parameter> in the current row (see
<function>ocifetch</function>). <function>ociresult</function> will
return everything as strings except for abstract types (ROWIDs,
LOBs and FILEs).
</para>
<para>
You can either use the column-number (1-Based) or the column-name,

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.10 $ -->
<!-- $Revision: 1.11 $ -->
<!--
DO NOT TRANSLATE THIS FILE.
@ -21,9 +21,9 @@ PLEASE, TRANSLATE THE APPROPRIATE NEW FILE.
</methodsynopsis>
<para>
<function>ocirowcount</function> returns the number of rows affected
for e.g. update-statements. This function will not tell you the number
of rows that a select will return!
</para>
for e.g. update-statements. This function will not tell you the number
of rows that a select will return!
</para>
<para>
<example>
<title><function>ocirowcount</function> example</title>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/openssl.xml, last change in rev 1.1 -->
<refentry id="function.openssl-sign">
<refnamediv>
@ -14,7 +14,7 @@
<methodparam><type>string</type><parameter>&amp;signature</parameter></methodparam>
<methodparam><type>mixed</type><parameter>priv_key_id</parameter></methodparam>
</methodsynopsis>
&warn.experimental.func;
&warn.experimental.func;
<para>
&return.success;
If successful the signature is returned in

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/openssl.xml, last change in rev 1.1 -->
<refentry id="function.openssl-verify">
<refnamediv>
@ -14,7 +14,7 @@
<methodparam><type>string</type><parameter>signature</parameter></methodparam>
<methodparam><type>mixed</type><parameter>pub_key_id</parameter></methodparam>
</methodsynopsis>
&warn.experimental.func;
&warn.experimental.func;
<para>
Returns 1 if the signature is correct, 0 if it is incorrect, and
-1 on error.

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/outcontrol.xml, last change in rev 1.1 -->
<refentry id="function.ob-gzhandler">
<refnamediv>
@ -13,7 +13,7 @@
<methodsynopsis>
<type>string</type><methodname>ob_gzhandler</methodname>
<methodparam><type>string</type><parameter>buffer</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>mode</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>mode</parameter></methodparam>
</methodsynopsis>
<para>
<function>ob_gzhandler</function> is intended to be used as a

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/outcontrol.xml, last change in rev 1.1 -->
<refentry id="function.ob-implicit-flush">
<refnamediv>
@ -12,7 +12,7 @@
<title>Description</title>
<methodsynopsis>
<type>void</type><methodname>ob_implicit_flush</methodname>
<methodparam choice="opt"><type>int</type><parameter>flag</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>flag</parameter></methodparam>
</methodsynopsis>
<para>
<function>ob_implicit_flush</function> will turn implicit

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.7 $ -->
<!-- $Revision: 1.8 $ -->
<!-- splitted from ./en/functions/pdf.xml, last change in rev 1.42 -->
<refentry id="function.pdf-circle">
<refnamediv>
@ -39,7 +39,7 @@ pdf_begin_page($pdf, 595, 842);
pdf_circle($pdf, 200, 700, 100);
pdf_stroke($pdf);
// a filled circle
// a filled circle
pdf_circle($pdf, 200, 700, 50);
pdf_fill($pdf);

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.15 $ -->
<!-- $Revision: 1.16 $ -->
<reference id="ref.pdf">
<title>PDF functions </title>
<titleabbrev>PDF</titleabbrev>
@ -293,7 +293,7 @@ echo "<A HREF=getpdf.php>finished</A>";
<example>
<title>Outputting a precalculated PDF</title>
<programlisting role="php">
<programlisting role="php">
<![CDATA[
<?php
$len = filesize($filename);

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/regex.xml, last change in rev 1.2 -->
<refentry id="function.ereg">
<refnamediv>
@ -35,7 +35,7 @@
which starts at the first left parenthesis; $regs[2] will contain
the substring starting at the second, and so on. $regs[0] will
contain a copy of the complete string matched.
</simpara>
</simpara>
<note>
<simpara>
Up to (and including) PHP 4.1.0 <varname>$regs</varname> will be

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/sesam.xml, last change in rev 1.1 -->
<refentry id="function.sesam-diagnostic">
<refnamediv>
@ -92,7 +92,7 @@ function PrintReturncode($exec_str)
--$colspan;
echo "<table border=\"1\">\n";
echo "<tr><th colspan=\"" . $colspan . "\"><span class=\"spanred\">ERROR:</span> ".
htmlspecialchars($err["errmsg"]) . "</th></tr>\n";
htmlspecialchars($err["errmsg"]) . "</th></tr>\n";
if ($err["errcol"] >= 0) {
echo "<tr><td colspan=\"" . $colspan . "\"><pre>\n";
$errstmt = $exec_str . "\n";

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/sesam.xml, last change in rev 1.1 -->
<refentry id="function.sesam-fetch-result">
<refnamediv>
@ -55,7 +55,7 @@
</entry>
</row>
<row>
<entry>mixed $arr[col][row]</entry>
<entry>mixed $arr[col][row]</entry>
<entry>
result data for all the fields at
row(<literal>row</literal>) and

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.7 $ -->
<!-- $Revision: 1.8 $ -->
<!-- splitted from ./en/functions/sesam.xml, last change in rev 1.1 -->
<refentry id="function.sesam-fetch-row">
<refnamediv>
@ -90,7 +90,7 @@
<row>
<entry>5</entry>
<entry><literal>SESAM_SEEK_RELATIVE</literal></entry>
<entry>
<entry>
seek relative to current scroll position, where
<parameter>offset</parameter> can be a positive or negative
offset value.

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.5 $ -->
<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/sesam.xml, last change in rev 1.1 -->
<refentry id="function.sesam-field-array">
<refnamediv>
@ -58,8 +58,8 @@
</entry>
</row>
<row>
<entry>string $arr[col]["count"]</entry>
<entry>
<entry>string $arr[col]["count"]</entry>
<entry>
The "count" attribute describes the repetition factor when
the column has been declared as a "multiple field". Usually,
the "count" attribute is 1. The first column of a "multiple

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/snmp.xml, last change in rev 1.2 -->
<refentry id="function.snmpwalk">
<refnamediv>
@ -61,7 +61,7 @@ for ($i=0; $i < count($a); $i++) {
</programlisting>
</informalexample>
</para>
</refsect1>
</refentry>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/snmp.xml, last change in rev 1.2 -->
<refentry id="function.snmpwalkoid">
<refnamediv>
@ -69,7 +69,7 @@ for (reset($a); $i = key($a); next($a)) {
</programlisting>
</informalexample>
</para>
</refsect1>
</refentry>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/sockets.xml, last change in rev 1.27 -->
<refentry id="function.socket-create-pair">
<refnamediv>
@ -17,8 +17,8 @@
</methodsynopsis>
&warn.experimental.func;
<para>
<function>socket_create_pair</function> creates two connected and indistinguishable sockets, and stores
them in <parameter>&amp;fd</parameter>. This function is commonly used in IPC (InterProcess Communication).
<function>socket_create_pair</function> creates two connected and indistinguishable sockets, and stores
them in <parameter>&amp;fd</parameter>. This function is commonly used in IPC (InterProcess Communication).
</para>
<para>
The <parameter>domain</parameter> parameter specifies the protocol
@ -167,7 +167,7 @@
</tbody>
</tgroup>
</table>
<para>
<para>
<example>
<title><function>socket_create_pair</function> example</title>
<programlisting role="php">
@ -176,7 +176,7 @@
$sockets = array();
$uniqid = uniqid('');
if (file_exists("/tmp/$uniqid.sock")) {
die('Temporary socket already exists.');
die('Temporary socket already exists.');
}
/* Setup socket pair */
if (!socket_create_pair(AF_UNIX, SOCK_STREAM, 0, $sockets)) {
@ -218,12 +218,12 @@ if ($pid == -1) {
/*parent*/
socket_close($ary[0]);
if (!socket_write($ary[1], $strone, strlen($strone))) {
echo socket_strerror(socket_last_error());
echo socket_strerror(socket_last_error());
}
if (socket_read($ary[1], strlen($strtwo), PHP_BINARY_READ) == $strtwo) {
echo "Recieved $strtwo\n";
}
socket_close($ary[1]);
socket_close($ary[1]);
} else {
/*child*/
socket_close($ary[1]);
@ -233,7 +233,7 @@ if ($pid == -1) {
if (socket_read($ary[0], strlen($strone), PHP_BINARY_READ) == $strone) {
echo "Recieved $strone\n";
}
socket_close($ary[0]);
socket_close($ary[0]);
}
?>
]]>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.5 $ -->
<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/sockets.xml, last change in rev 1.27 -->
<refentry id="function.socket-get-option">
<refnamediv>
@ -23,10 +23,10 @@
</para>
<para>
The <parameter>level</parameter> parameter specifies the protocol level at
which the option resides. For example, to retrieve options at the socket level,
a <parameter>level</parameter> parameter of SOL_SOCKET would be used. Other
levels, such as TCP, can be used by specifying the protocol number of that level.
Protocol numbers can be found by using the <function>getprotobyname</function> function.
which the option resides. For example, to retrieve options at the socket level,
a <parameter>level</parameter> parameter of SOL_SOCKET would be used. Other
levels, such as TCP, can be used by specifying the protocol number of that level.
Protocol numbers can be found by using the <function>getprotobyname</function> function.
</para>
<table>
<title>Available Socket Options</title>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.5 $ -->
<!-- $Revision: 1.6 $ -->
<section id="sqlite.configuration">
&reftitle.runtime;
&extension.runtime;
@ -26,7 +26,7 @@
For further details and definition of the PHP_INI_* constants see
<function>ini_set</function>.
</para>
&ini.descriptions.title;
&ini.descriptions.title;
<para>
<variablelist>
<varlistentry id="ini.sqlite.assoc-case">

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.9 $ -->
<!-- $Revision: 1.10 $ -->
<reference id="ref.sqlite">
<title>SQLite</title>
<titleabbrev>SQLite</titleabbrev>
@ -60,10 +60,10 @@
</para>
</section>
&reference.sqlite.constants;
&reference.sqlite.ini;
&reference.sqlite.constants;
&reference.sqlite.ini;
</partintro>
&reference.sqlite.functions;
</reference>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/sybase.xml, last change in rev 1.2 -->
<refentry id="function.sybase-fetch-field">
<refnamediv>
@ -28,23 +28,23 @@
<itemizedlist>
<listitem>
<simpara>
name - column name. if the column is a result of a function, this
property is set to computed#N, where #N is a serial number.
name - column name. if the column is a result of a function, this
property is set to computed#N, where #N is a serial number.
</simpara>
</listitem>
<listitem>
<simpara>
column_source - the table from which the column was taken
column_source - the table from which the column was taken
</simpara>
</listitem>
<listitem>
<simpara>
max_length - maximum length of the column
max_length - maximum length of the column
</simpara>
</listitem>
<listitem>
<simpara>
numeric - 1 if the column is numeric
numeric - 1 if the column is numeric
</simpara>
</listitem>
<listitem>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.10 $ -->
<!-- $Revision: 1.11 $ -->
<section id="sybase.configuration">
&reftitle.runtime;
&extension.runtime;
@ -353,8 +353,8 @@
</term>
<listitem>
<para>
Allows you to to define how often deadlocks are to be retried. The default
is -1, or "forever".
Allows you to to define how often deadlocks are to be retried. The default
is -1, or "forever".
</para>
</listitem>
</varlistentry>

View file

@ -1,5 +1,5 @@
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<refentry id="function.tidy-getopt">
<refnamediv>
<refname>tidy_getopt</refname>
@ -44,7 +44,7 @@ $html ='<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
</body></html>';
$config = array('accessibility-check' => 3,
'alt-text' => 'some text');
'alt-text' => 'some text');
$tidy = new tidy();
$tidy->parseString($html, $config);

View file

@ -1,11 +1,11 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!--
This extension has no runtime configuration
settings yet, the sample entries shown here
are those created by ext_skel
settings yet, the sample entries shown here
are those created by ext_skel
<section id="tokenizer.configuration">