derick Wed Jun 5 14:59:11 2002 EDT
Modified files:
/phpdoc-nl/reference/strings reference.xml
/phpdoc-nl/reference/strings/functions str-repeat.xml
Log:
- Getting in sync
Index: phpdoc-nl/reference/strings/reference.xml
diff -u phpdoc-nl/reference/strings/reference.xml:1.5
phpdoc-nl/reference/strings/reference.xml:1.6
--- phpdoc-nl/reference/strings/reference.xml:1.5 Fri May 24 13:42:04 2002
+++ phpdoc-nl/reference/strings/reference.xml Wed Jun 5 14:59:10 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- EN-Revision: 1.2 Maintainer: sander Status: ready -->
+<!-- EN-Revision: 1.3 Maintainer: sander Status: ready -->
<reference id="ref.strings">
<title>String functions</title>
<titleabbrev>Strings</titleabbrev>
@@ -8,11 +8,11 @@
<simpara>
Al deze functies manipuleren strings op verschillende manieren.
Meer specifieke functies kunnen worden gevonden in de regular expression
- en URL handling secties.
+ en URL handling secties van deze handleiding.
</simpara>
<para>
Voor informatie over hoe strings zich gedragen, vooral met betrekking tot
- het gebruik van single quotes, double quotes en escape sequences, zie de
+ het gebruik van enkele quotes, dubbele quotes en escape sequences, zie de
<link linkend="language.types.string">Strings</link> entry in de
<link linkend="language.types">Types</link> sectie van de manual.
</para>
Index: phpdoc-nl/reference/strings/functions/str-repeat.xml
diff -u phpdoc-nl/reference/strings/functions/str-repeat.xml:1.3
phpdoc-nl/reference/strings/functions/str-repeat.xml:1.4
--- phpdoc-nl/reference/strings/functions/str-repeat.xml:1.3 Sun May 26 12:52:40
2002
+++ phpdoc-nl/reference/strings/functions/str-repeat.xml Wed Jun 5 14:59:11
+2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- EN-Revision: 1.3 Maintainer: sander Status: ready -->
+<!-- EN-Revision: 1.4 Maintainer: sander Status: ready -->
<refentry id="function.str-repeat">
<refnamediv>
<refname>str_repeat</refname>
@@ -13,15 +13,18 @@
<methodparam><type>int</type><parameter>multiplier</parameter></methodparam>
</methodsynopsis>
<para>
- Geeft <parameter>multiplier</parameter> herhalingen
- van <parameter>input_str</parameter>.
- <parameter>multiplier</parameter> moet groter zijn dan 0.
+ Geeft <parameter>multiplier</parameter> herhalingen van
+ <parameter>input_str</parameter>. <parameter>multiplier</parameter> moet
+ groter of gelijk zijn aan 0. Als de <parameter>mutiplier</parameter>
+ parameter 0 is, dan geeft deze functie een lege string terug.
</para>
<example>
<title><function>str_repeat</function> voorbeeld</title>
<programlisting role="php">
<![CDATA[
-echo str_repeat ('-=', 10);
+<?php
+ echo str_repeat ('-=', 10);
+?>
]]>
</programlisting>
</example>