gerzson         Thu Feb  7 08:29:48 2002 EDT

  Modified files:              
    /phpdoc/hu/functions        array.xml funchand.xml math.xml pcre.xml 
  Log:
  change revision number regarding to the DocBook upgrade
  
Index: phpdoc/hu/functions/array.xml
diff -u phpdoc/hu/functions/array.xml:1.10 phpdoc/hu/functions/array.xml:1.11
--- phpdoc/hu/functions/array.xml:1.10  Mon Feb  4 09:15:42 2002
+++ phpdoc/hu/functions/array.xml       Thu Feb  7 08:29:48 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-2"?>
-<!-- EN-Revision: 1.157 Maintainer: gerzson Status: ready  -->
+<!-- EN-Revision: 1.158 Maintainer: gerzson Status: ready  -->
 <!-- CREDITS: zvaranka -->
 
 <reference id="ref.array">
@@ -306,10 +306,12 @@
       </para>
       <screen>
 <![CDATA[
-   [1] => 2  
-   [hello] => 2  
-   [világ] => 1  
-]]>
+Array
+(
+   [1] => 2
+   [hello] => 2
+   [világ] => 1
+)]]>
       </screen>
     </example>
    </para>
@@ -1634,7 +1636,7 @@
      <programlisting role="php">
 <![CDATA[
 $sor      = array ("narancs", "banán", "alma", "málna");
-$gyumolcs = array_shift ($verem);
+$gyumolcs = array_shift ($sor);
 ]]>
      </programlisting>
      <para> 
@@ -1838,23 +1840,12 @@
      <programlisting role="php">
 <![CDATA[
 $a = array(2, 4, 6, 8);
-echo "összeg(a) = ".array_sum($a)."\n";
-// kiírja, hogy: összeg(a) = 20
+echo "összeg(a) = ".array_sum($a);  // kiírja: összeg(a) = 20
 
 $b = array("a"=>1.2,"b"=>2.3,"c"=>3.4);
-echo "összeg(b) = ".array_sum($b)."\n";
-// kiírja, hogy: összeg(b) = 6.9
+echo "összeg(b) = ".array_sum($b);  // kiírja: összeg(b) = 6.9
 ]]>
      </programlisting>
-     <para> 
-      A fenti program kimenete: 
-      <screen role="php"> 
-<![CDATA[ 
-összeg(a) = 20 
-összeg(b) = 6.9 
-]]> 
-      </screen> 
-     </para> 
     </example>
    </para>
    <note>
Index: phpdoc/hu/functions/funchand.xml
diff -u phpdoc/hu/functions/funchand.xml:1.14 phpdoc/hu/functions/funchand.xml:1.15
--- phpdoc/hu/functions/funchand.xml:1.14       Sat Feb  2 10:41:25 2002
+++ phpdoc/hu/functions/funchand.xml    Thu Feb  7 08:29:48 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-2"?>
-<!-- EN-Revision: 1.26 Maintainer: pgerzson Status: ready -->
+<!-- EN-Revision: 1.27 Maintainer: gerzson Status: ready -->
 
  <reference id="ref.funchand">
   <title>Függvénykezelő függvények</title>
Index: phpdoc/hu/functions/math.xml
diff -u phpdoc/hu/functions/math.xml:1.13 phpdoc/hu/functions/math.xml:1.14
--- phpdoc/hu/functions/math.xml:1.13   Sun Feb  3 06:29:43 2002
+++ phpdoc/hu/functions/math.xml        Thu Feb  7 08:29:48 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-2" ?>
-<!-- EN-Revision: 1.70 Maintainer: gerzson Status: ready -->
+<!-- EN-Revision: 1.71 Maintainer: gerzson Status: ready -->
 
  <reference id="ref.math">
   <title>Matematikai függvények</title>
Index: phpdoc/hu/functions/pcre.xml
diff -u phpdoc/hu/functions/pcre.xml:1.12 phpdoc/hu/functions/pcre.xml:1.13
--- phpdoc/hu/functions/pcre.xml:1.12   Sun Feb  3 06:29:43 2002
+++ phpdoc/hu/functions/pcre.xml        Thu Feb  7 08:29:48 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-2"?>
-<!-- EN-Revision: 1.72 Maintainer: gerzson Status: mixed -->
+<!-- EN-Revision: 1.73 Maintainer: gerzson Status: ready -->
 
 <reference id="ref.pcre">
   <title>Reguláris kifejezések függvényei (Perl kompatibilis)</title>


Reply via email to