adiju Sun May 12 09:18:29 2002 EDT
Modified files:
/phpdoc-ro/reference/array/functions array-fill.xml
Log:
First romanian version of file...
Index: phpdoc-ro/reference/array/functions/array-fill.xml
diff -u phpdoc-ro/reference/array/functions/array-fill.xml:1.2
phpdoc-ro/reference/array/functions/array-fill.xml:1.3
--- phpdoc-ro/reference/array/functions/array-fill.xml:1.2 Sun May 12 04:28:21
2002
+++ phpdoc-ro/reference/array/functions/array-fill.xml Sun May 12 09:18:29 2002
@@ -1,13 +1,13 @@
<?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.2 -->
<refentry id="function.array-fill">
<refnamediv>
<refname>array_fill</refname>
- <refpurpose>Fill an array with values</refpurpose>
+ <refpurpose>Umple un tablou cu valori</refpurpose>
</refnamediv>
<refsect1>
- <title>Description</title>
+ <title>Descriere</title>
<methodsynopsis>
<type>array</type><methodname>array_fill</methodname>
<methodparam><type>int</type><parameter>start_index</parameter></methodparam>
@@ -15,21 +15,21 @@
<methodparam><type>mixed</type><parameter>value</parameter></methodparam>
</methodsynopsis>
<para>
- <function>array_fill</function> fills an array with
- <parameter>num</parameter> entries of the value of the
- <parameter>value</parameter> parameter, keys starting at the
- <parameter>start_index</parameter> parameter.
+ <function>array_fill</function> umple un tablou cu un num�r de
+ <parameter>num</parameter> ori a valorii parametrului
+ <parameter>value</parameter>, indec�ii �ncep�nd de la parametrul
+ <parameter>start_index</parameter>.
</para>
<para>
<example>
- <title><function>array_fill</function> example</title>
+ <title>Exemplu de utilizare <function>array_fill</function></title>
<programlisting role="php">
<![CDATA[
$a = array_fill(5, 6, 'banana');
]]>
</programlisting>
<para>
- $a now has the following entries using <function>print_r</function>:
+ $a are acum urm�toarele intr�ri utiliz�nd <function>print_r</function>:
<screen>
<![CDATA[
Array