gerzson         Wed Feb 13 11:39:12 2002 EDT

  Modified files:              
    /phpdoc/hu/language variables.xml types.xml control-structures.xml 
                        basic-syntax.xml 
  Log:
  sync to EN revision
  
Index: phpdoc/hu/language/variables.xml
diff -u phpdoc/hu/language/variables.xml:1.21 phpdoc/hu/language/variables.xml:1.22
--- phpdoc/hu/language/variables.xml:1.21       Sat Feb  2 10:41:29 2002
+++ phpdoc/hu/language/variables.xml    Wed Feb 13 11:39:11 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-2"?>
-<!-- EN-Revision: 1.32 Maintainer: goba Status: ready -->
+<!-- EN-Revision: 1.35 Maintainer: goba Status: ready -->
 <!-- CREDITS: kgergely,gerzson -->
 
  <chapter id="language.variables">
@@ -523,7 +523,10 @@
         <simpara>
         A most fut� szkriptf�jl neve, a document root-hoz
         k�pest relat�v alakban. Ha a PHP parancssorb�l
-        fut, ez a v�ltoz� nem el�rhet�.
+        fut, ez a v�ltoz� nem el�rhet�. Ez a v�ltoz� 
+        a k�r�s �tvonal inform�ci�j�t is tartalmazza, ha az
+        l�tezik, azaz a $PHP_SELF a "http://example.com/test.php/foo.bar"; 
+        c�mre a k�vetkez�t fogja adni: "/test.php/foo.bar"  
         </simpara>
        </listitem>
       </varlistentry>
Index: phpdoc/hu/language/types.xml
diff -u phpdoc/hu/language/types.xml:1.20 phpdoc/hu/language/types.xml:1.21
--- phpdoc/hu/language/types.xml:1.20   Tue Jan 29 18:06:53 2002
+++ phpdoc/hu/language/types.xml        Wed Feb 13 11:39:11 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-2"?>
-<!-- EN-Revision: 1.71 Maintainer: goba Status: ready -->
+<!-- EN-Revision: 1.73 Maintainer: goba Status: ready -->
 <!-- CREDITS: gerzson -->
 
  <chapter id="language.types">
@@ -97,7 +97,7 @@
    [persze van belesz�l�sa...], hanem a PHP fut�si id�ben
    hat�rozza meg a v�ltoz� k�rnyezet�t�l f�gg�en.
   </simpara>
-  <tip>
+  <note>
    <simpara>
     Ha egy <link linkend="language.expressions">kifejez�s</link> �rt�k�re
     �s/vagy t�pus�ra vagy kiv�ncsi, akkor haszn�ld a
@@ -111,7 +111,7 @@
     a programokban.
    </simpara>
    <!-- TODO: example(s) would be great -->
-  </tip>
+  </note>
 
   <simpara>
    Ha egy v�ltoz� t�pus�t egy adott t�pusra kell konvert�lnunk,
@@ -1049,16 +1049,13 @@
      <para>
       Az �rt�k b�rmi lehet.
      </para>
-     <formalpara id="language.types.array.omit-key">
-      <title>Kulcs elhagy�sa</title>
-      <para>
-       Ha nem adsz meg egy kulcsot, a PHP veszi az eg�sz indexek
-       k�z�l a legnagyobbat, �s enn�l egyel nagyobb index� elemet
-       hoz l�tre. Ha m�g nincs eg�sz �rt�kkel megadott index,
-       az �j kulcs <literal>0</literal> (nulla) lesz. Ha olyan kulcsot
-       adsz meg, ami m�r a t�mb eleme, a kor�bbi elem fel�l�r�dik.
-      </para>
-     </formalpara>
+     <para>
+      Ha nem adsz meg egy kulcsot, a PHP veszi az eg�sz indexek
+      k�z�l a legnagyobbat, �s enn�l egyel nagyobb index� elemet
+      hoz l�tre. Ha m�g nincs eg�sz �rt�kkel megadott index,
+      az �j kulcs <literal>0</literal> (nulla) lesz. Ha olyan kulcsot
+      adsz meg, ami m�r a t�mb eleme, a kor�bbi elem fel�l�r�dik.
+     </para>
 
      <para>
       <synopsis>
@@ -1217,7 +1214,7 @@
        Ha ezek az �rvek nem gy�znek meg: ez a szintaxis egyszer�en
        nem javasolt, �s b�rmikor megsz�nhet m�k�dni.
       </para>
-      <tip>
+      <note>
        <simpara>
         Ha az <link linkend="function.error-reporting"
         >error_reporting</link> be�ll�t�st <literal>E_ALL</literal>
@@ -1227,7 +1224,7 @@
         (Add az <literal>error_reporting(E_ALL);</literal>
         sort a programod elej�hez).
        </simpara>
-      </tip>
+      </note>
       <note>
        <simpara>
         Id�z�jeles <type>string</type>ekben, egy m�sik szintaxis
@@ -1872,12 +1869,12 @@
       </listitem>
      </itemizedlist>
     </para>
-    <tip>
+    <note>
      <simpara>
       Ahelyett, hogy egy v�ltoz�t stringg� alak�tasz, egyszer�en
       id�z�jelbe is teheted, hogy ezt a hat�st el�rd.
      </simpara>
-    </tip>
+    </note>
 
     <para>
      Megjegyz�s: sz�k�z�k �s tabul�torok megengedettek
Index: phpdoc/hu/language/control-structures.xml
diff -u phpdoc/hu/language/control-structures.xml:1.17 
phpdoc/hu/language/control-structures.xml:1.18
--- phpdoc/hu/language/control-structures.xml:1.17      Tue Jan 29 18:59:16 2002
+++ phpdoc/hu/language/control-structures.xml   Wed Feb 13 11:39:11 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-2"?>
-<!-- EN-Revision: 1.53 Maintainer: goba Status: ready -->
+<!-- EN-Revision: 1.55 Maintainer: goba Status: ready -->
 <!-- CREDITS: kgergely,gerzson -->
 
  <chapter id="control-structures">
@@ -588,6 +588,7 @@
 
 foreach ($tomb as $ertek) {
     print "\$tomb[$i] => $ertek.\n";
+    $i++;
 }
 
 /* harmadik foreach p�lda: kulcs �s �rt�k */
Index: phpdoc/hu/language/basic-syntax.xml
diff -u phpdoc/hu/language/basic-syntax.xml:1.12 
phpdoc/hu/language/basic-syntax.xml:1.13
--- phpdoc/hu/language/basic-syntax.xml:1.12    Tue Jan 29 18:04:40 2002
+++ phpdoc/hu/language/basic-syntax.xml Wed Feb 13 11:39:11 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-2"?>
-<!-- EN-Revision: 1.25 Maintainer: goba Status: ready -->
+<!-- EN-Revision: 1.26 Maintainer: goba Status: ready -->
 <!-- CREDITS: kgergely -->
 
   <chapter id="language.basic-syntax">


Reply via email to