sander Thu May 30 06:07:17 2002 EDT
Modified files:
/phpdoc-nl/reference/strings/functions explode.xml ord.xml
stristr.xml strncmp.xml
strrchr.xml
substr-replace.xml
Log:
Sync with EN and add revision tags... the string-section should now
(finally) be complete :)
Index: phpdoc-nl/reference/strings/functions/explode.xml
diff -u phpdoc-nl/reference/strings/functions/explode.xml:1.2
phpdoc-nl/reference/strings/functions/explode.xml:1.3
--- phpdoc-nl/reference/strings/functions/explode.xml:1.2 Sat May 25 06:24:01
2002
+++ phpdoc-nl/reference/strings/functions/explode.xml Thu May 30 06:07:17 2002
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- splitted from ./nl/functions/strings.xml, last change in rev 1.1 -->
-<!-- last change to 'explode' in en/ tree in rev 1.2 -->
+<!-- EN-Revision: 1.2 Maintainer: sander Status: ready -->
<refentry id="function.explode">
<refnamediv>
<refname>explode</refname>
Index: phpdoc-nl/reference/strings/functions/ord.xml
diff -u phpdoc-nl/reference/strings/functions/ord.xml:1.2
phpdoc-nl/reference/strings/functions/ord.xml:1.3
--- phpdoc-nl/reference/strings/functions/ord.xml:1.2 Sun May 26 12:52:40 2002
+++ phpdoc-nl/reference/strings/functions/ord.xml Thu May 30 06:07:17 2002
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- splitted from ./nl/functions/strings.xml, last change in rev 1.1 -->
-<!-- last change to 'ord' in en/ tree in rev 1.2 -->
+<!-- EN-Revision: 1.2 Maintainer: sander Status: ready -->
<refentry id="function.ord">
<refnamediv>
<refname>ord</refname>
Index: phpdoc-nl/reference/strings/functions/stristr.xml
diff -u phpdoc-nl/reference/strings/functions/stristr.xml:1.1
phpdoc-nl/reference/strings/functions/stristr.xml:1.2
--- phpdoc-nl/reference/strings/functions/stristr.xml:1.1 Sun Apr 14 21:37:39
2002
+++ phpdoc-nl/reference/strings/functions/stristr.xml Thu May 30 06:07:17 2002
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- splitted from ./nl/functions/strings.xml, last change in rev 1.1 -->
-<!-- last change to 'stristr' in en/ tree in rev 1.8 -->
+<!-- EN-Revision: 1.2 Maintainer: sander Status: ready -->
<refentry id="function.stristr">
<refnamediv>
<refname>stristr</refname>
Index: phpdoc-nl/reference/strings/functions/strncmp.xml
diff -u phpdoc-nl/reference/strings/functions/strncmp.xml:1.1
phpdoc-nl/reference/strings/functions/strncmp.xml:1.2
--- phpdoc-nl/reference/strings/functions/strncmp.xml:1.1 Sun Apr 14 21:37:40
2002
+++ phpdoc-nl/reference/strings/functions/strncmp.xml Thu May 30 06:07:17 2002
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- splitted from ./nl/functions/strings.xml, last change in rev 1.1 -->
-<!-- last change to 'strncmp' in en/ tree in rev 1.38 -->
+<!-- EN-Revision: 1.2 Maintainer: sander Status: ready -->
<refentry id="function.strncmp">
<refnamediv>
<refname>strncmp</refname>
Index: phpdoc-nl/reference/strings/functions/strrchr.xml
diff -u phpdoc-nl/reference/strings/functions/strrchr.xml:1.1
phpdoc-nl/reference/strings/functions/strrchr.xml:1.2
--- phpdoc-nl/reference/strings/functions/strrchr.xml:1.1 Sun Apr 14 21:37:40
2002
+++ phpdoc-nl/reference/strings/functions/strrchr.xml Thu May 30 06:07:17 2002
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- splitted from ./nl/functions/strings.xml, last change in rev 1.1 -->
-<!-- last change to 'strrchr' in en/ tree in rev 1.2 -->
+<!-- EN-Revision: 1.2 Maintainer: sander Status: ready -->
<refentry id="function.strrchr">
<refnamediv>
<refname>strrchr</refname>
@@ -25,26 +24,28 @@
</para>
<para>
Als <parameter>needle</parameter> meer dan 1 karakter bevat, wordt
- het eerste karakter gebruikt.
+ alleen het eerste karakter gebruikt.
</para>
<para>
Als <parameter>needle</parameter> geen string is, wordt deze
geconverteerd naar een integer en toegepast als de ordinale
waarde van een karakter.
<example>
- <title><function>strrchr</function> example</title>
+ <title><function>strrchr</function> voorbeeld</title>
<programlisting role="php">
+<![CDATA[
// vind de laatste directory in $PATH
-$dir = substr (strrchr ($PATH, ":"), 1);
+$dir = substr (strrchr ($PATH, ":"), 1);
// pak alles na de laatste newline
-$text = "Line 1\nLine 2\nLine 3";
+$text = "Line 1\nLine 2\nLine 3";
$last = substr (strrchr ($text, 10), 1 );
+]]>
</programlisting>
</example>
</para>
<para>
- Zie ook <function>substr</function>,
+ Zie ook <function>strchr</function>, <function>substr</function>,
<function>stristr</function>, en <function>strstr</function>.
</para>
</refsect1>
Index: phpdoc-nl/reference/strings/functions/substr-replace.xml
diff -u phpdoc-nl/reference/strings/functions/substr-replace.xml:1.3
phpdoc-nl/reference/strings/functions/substr-replace.xml:1.4
--- phpdoc-nl/reference/strings/functions/substr-replace.xml:1.3 Sun May 26
12:52:40 2002
+++ phpdoc-nl/reference/strings/functions/substr-replace.xml Thu May 30 06:07:17
+2002
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- splitted from ./nl/functions/strings.xml, last change in rev 1.1 -->
-<!-- last change to 'substr-replace' in en/ tree in rev 1.2 -->
+<!-- EN-Revision: 1.2 Maintainer: sander Status: ready -->
<refentry id="function.substr-replace">
<refnamediv>
<refname>substr_replace</refname>
@@ -73,11 +72,6 @@
Zie ook <function>str_replace</function> en
<function>substr</function>.
</para>
- <note>
- <simpara>
- <function>substr_replace</function> is toegevoegd in PHP 4.0.0.
- </simpara>
- </note>
</refsect1>
</refentry>