oops, sorry :(

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@178044 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Yannick Torres 2005-01-23 22:03:57 +00:00
parent e1c5dc16c6
commit e5b5627d96
3 changed files with 9 additions and 9 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/ldap.xml, last change in rev 1.2 -->
<refentry id="function.ldap-add">
<refnamediv>
@ -25,7 +25,7 @@
In case of multiple values for an attribute, they are indexed using
integers starting with 0.
</para>
<example>
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
@ -35,7 +35,7 @@ $entree["attribut2"][1] = "value2";
?>
]]>
</programlisting>
</example>
</informalexample>
<example>
<title>Complete example with authenticated bind</title>
<programlisting role="php">

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/ldap.xml, last change in rev 1.2 -->
<refentry id="function.ldap-get-attributes">
<refnamediv>
@ -31,7 +31,7 @@
and won't care what other data is held.
</para>
<para>
<example>
<informalexample>
<programlisting>
<![CDATA[
return_value["count"] = number of attributes in the entry
@ -43,7 +43,7 @@ return_value["attribute"][0] = first value of the attribute
return_value["attribute"][i] = (i+1)th value of the attribute
]]>
</programlisting>
</example>
</informalexample>
<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/ldap.xml, last change in rev 1.2 -->
<refentry id="function.ldap-get-entries">
<refnamediv>
@ -28,7 +28,7 @@
The attribute index is converted to lowercase. (Attributes are
case-insensitive for directory servers, but not when used as
array indices.)
<example>
<informalexample>
<programlisting>
<![CDATA[
return_value["count"] = number of entries in the result
@ -44,7 +44,7 @@ return_value[i]["attribute"]["count"] = number of values for
return_value[i]["attribute"][j] = jth value of attribute in ith entry
]]>
</programlisting>
</example>
</informalexample>
</para>
<para>