adiju Sun May 12 04:33:55 2002 EDT
Modified files:
/phpdoc-ro/reference/array/functions array-change-key-case.xml
Log:
Replace english translation with first version of romanian one...
Index: phpdoc-ro/reference/array/functions/array-change-key-case.xml
diff -u phpdoc-ro/reference/array/functions/array-change-key-case.xml:1.2
phpdoc-ro/reference/array/functions/array-change-key-case.xml:1.3
--- phpdoc-ro/reference/array/functions/array-change-key-case.xml:1.2 Sun May 12
04:28:21 2002
+++ phpdoc-ro/reference/array/functions/array-change-key-case.xml Sun May 12
+04:33:55 2002
@@ -1,31 +1,31 @@
<?xml version="1.0" encoding="iso-8859-2"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/array.xml, last change in rev 1.113 -->
<refentry id="function.array-change-key-case">
<refnamediv>
<refname>array_change_key_case</refname>
- <refpurpose>Returns an array with all string keys lowercased or
uppercased</refpurpose>
+ <refpurpose>Returneaz� un tablou cu to�i indec�ii literali reprezenta�i ca
+minuscule sau majuscule</refpurpose>
</refnamediv>
<refsect1>
- <title>Description</title>
+ <title>Descriere</title>
<methodsynopsis>
<type>array</type><methodname>array_change_key_case</methodname>
<methodparam><type>array</type><parameter>input</parameter></methodparam>
<methodparam
choice="opt"><type>int</type><parameter>case</parameter></methodparam>
</methodsynopsis>
<para>
- <function>array_change_key_case</function> changes the
- keys in the <parameter>input</parameter> array to
- be all lowercase or uppercase. The change depends
- on the last optional <parameter>case</parameter>
- parameter. You can pass two constants there,
- <constant>CASE_UPPER</constant> and
- <constant>CASE_LOWER</constant>. The default is
- <constant>CASE_LOWER</constant>. The function will leave
- number indices as is.
+ <function>array_change_key_case</function> schimb� indec�ii
+ literali ai tabloului <parameter>input</parameter> pentru a fi
+ to�i minuscule sau majuscule. Schimbarea depinde
+ de cel de-al doilea parametru, op�ional, <parameter>case</parameter>.
+ Acesta poate primi dou� constante:
+ <constant>CASE_UPPER</constant> �i
+ <constant>CASE_LOWER</constant>. Implicit� este
+ <constant>CASE_LOWER</constant>. Func�ia nu va
+ influen�a indicii numerici.
</para>
<example>
- <title><function>array_change_key_case</function> example</title>
+ <title>Exemplu de utilizare <function>array_change_key_case</function></title>
<programlisting role="php">
<![CDATA[
$input_array = array("FirSt" => 1, "SecOnd" => 4);
@@ -33,7 +33,7 @@
]]>
</programlisting>
<para>
- The printout of the above program will be:
+ Rezultatul va fi:
<screen>
<![CDATA[
Array