cvs: phpdoc-da /reference/strings/functions implode.xml
[email protected] ("Tom Sommer")
| Newsgroups | php.doc.da |
|---|---|
| Message-ID | <cvstomsommer1089140767@cvsserver> |
tomsommer Tue Jul 6 15:06:07 2004 EDT
Modified files:
/phpdoc-da/reference/strings/functions implode.xml
Log:
Fix typo and example
http://cvs.php.net/diff.php/phpdoc-da/reference/strings/functions/implode.xml?r1=1.1&r2=1.2&ty=u
Index: phpdoc-da/reference/strings/functions/implode.xml
diff -u phpdoc-da/reference/strings/functions/implode.xml:1.1 phpdoc-da/reference/strings/functions/implode.xml:1.2
--- phpdoc-da/reference/strings/functions/implode.xml:1.1 Tue Jul 6 14:56:31 2004
+++ phpdoc-da/reference/strings/functions/implode.xml Tue Jul 6 15:06:07 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
<!-- EN-Revision: 1.10 Maintainer: tomsommer Status: ready -->
<refentry id="function.implode">
<refnamediv>
@@ -14,7 +14,7 @@
<methodparam><type>array</type><parameter>pieces</parameter></methodparam>
</methodsynopsis>
<para>
- Returnere en streng der indeholder en strengrepræsentation af alle
+ Returnerer en streng der indeholder en strengrepræsentation af alle
array elementer, i samme rækkefølge, med et bindeled mellem
hvert element.
<example>
@@ -24,9 +24,9 @@
<?php
$array = array('efternavn', 'email', 'telefon');
-$comma_separeret = implode(",", $array);
+$komma_separeret = implode(",", $array);
-echo $comma_separeret; // efternavn,email,telefon
+echo $komma_separeret; // efternavn,email,telefon
?>
]]>