|
1 | | -<?xml version="1.0" encoding="utf-8"?> |
2 | | -<!-- EN-Revision: 58d11dfe19531e1355980b2892964c07dd8e8068 Maintainer: Manuel dG Status: ready --> |
3 | | -<refentry xml:id="function.array-change-key-case" xmlns="http://docbook.org/ns/docbook"> |
4 | | - <refnamediv> |
5 | | - <refname>array_change_key_case</refname> |
6 | | - <refpurpose>Cambia case a tutte le chiavi dell'array</refpurpose> |
7 | | - </refnamediv> |
8 | | - |
9 | | - <refsect1 role="description"> |
10 | | - &reftitle.description; |
11 | | - <methodsynopsis> |
12 | | - <type>array</type><methodname>array_change_key_case</methodname> |
13 | | - <methodparam><type>array</type><parameter>array</parameter></methodparam> |
14 | | - <methodparam choice="opt"><type>int</type><parameter>case</parameter><initializer><constant>CASE_LOWER</constant></initializer></methodparam> |
15 | | - </methodsynopsis> |
16 | | - <para> |
17 | | - Restituisce un array con tutte le chiavi di un <parameter>array</parameter> convertite |
18 | | - in maiuscolo o minuscolo. Gli indici numerici non vengono modificati. |
19 | | - </para> |
20 | | - </refsect1> |
21 | | - |
22 | | - <refsect1 role="parameters"> |
23 | | - &reftitle.parameters; |
24 | | - <para> |
25 | | - <variablelist> |
26 | | - |
27 | | - <varlistentry> |
28 | | - <term><parameter>array</parameter></term> |
29 | | - <listitem> |
30 | | - <para> |
31 | | - L'array su cui lavorare |
32 | | - </para> |
33 | | - </listitem> |
34 | | - </varlistentry> |
35 | | - |
36 | | - <varlistentry> |
37 | | - <term><parameter>case</parameter></term> |
38 | | - <listitem> |
39 | | - <para> |
40 | | - <constant>CASE_UPPER</constant> oppure |
41 | | - <constant>CASE_LOWER</constant> (default) |
42 | | - </para> |
43 | | - </listitem> |
44 | | - </varlistentry> |
45 | | - |
46 | | - </variablelist> |
47 | | - </para> |
48 | | - </refsect1> |
49 | | - |
50 | | - <refsect1 role="returnvalues"> |
51 | | - &reftitle.returnvalues; |
52 | | - <para> |
53 | | - Restituisce un array con le chiavi convertite in maiuscolo o minuscolo, oppure &false; se |
54 | | - <parameter>input</parameter> non è un array. |
55 | | - </para> |
56 | | - </refsect1> |
57 | | - |
58 | | - <refsect1 role="errors"> |
59 | | - &reftitle.errors; |
60 | | - <para> |
61 | | - Lancia un <constant>E_WANRING</constant> se <parameter>input</parameter> |
62 | | - non è un array. |
63 | | - </para> |
64 | | - </refsect1> |
65 | | - |
66 | | - <refsect1 role="examples"> |
67 | | - &reftitle.examples; |
68 | | - <para> |
69 | | - <example xml:id="function.array-change-key-case.example-1"> |
70 | | - <title>Esempio di <function>array_change_key_case</function></title> |
71 | | - <programlisting role="php"> |
72 | | -<![CDATA[ |
73 | | -<?php |
74 | | -$input_array = array("PriMo" => 1, "SecOndO" => 4); |
75 | | -print_r(array_change_key_case($input_array, CASE_UPPER)); |
76 | | -?> |
77 | | -]]> |
78 | | - </programlisting> |
79 | | - &example.outputs; |
80 | | - <screen> |
81 | | -<![CDATA[ |
82 | | -Array |
83 | | -( |
84 | | - [PRIMO] => 1 |
85 | | - [SECONDO] => 2 |
86 | | -) |
87 | | -]]> |
88 | | - </screen> |
89 | | - </example> |
90 | | - </para> |
91 | | - </refsect1> |
92 | | - |
93 | | - <refsect1 role="notes"> |
94 | | - &reftitle.notes; |
95 | | - <note> |
96 | | - <para> |
97 | | - Se un array ha degli indici che risulteranno identici dopo l'esecuzione |
98 | | - di questa funzione (es. "<literal>keY</literal>" e "<literal>kEY</literal>"), |
99 | | - il valore dell'ultimo indice sovrascrivera' gli altri. |
100 | | - </para> |
101 | | - </note> |
102 | | - </refsect1> |
103 | | -</refentry> |
104 | | - |
105 | | -<!-- Keep this comment at the end of the file |
106 | | -Local variables: |
107 | | -mode: sgml |
108 | | -sgml-omittag:t |
109 | | -sgml-shorttag:t |
110 | | -sgml-minimize-attributes:nil |
111 | | -sgml-always-quote-attributes:t |
112 | | -sgml-indent-step:1 |
113 | | -sgml-indent-data:t |
114 | | -indent-tabs-mode:nil |
115 | | -sgml-parent-document:nil |
116 | | -sgml-default-dtd-file:"~/.phpdoc/manual.ced" |
117 | | -sgml-exposed-tags:nil |
118 | | -sgml-local-catalogs:nil |
119 | | -sgml-local-ecat-files:nil |
120 | | -End: |
121 | | -vim600: syn=xml fen fdm=syntax fdl=2 si |
122 | | -vim: et tw=78 syn=sgml |
123 | | -vi: ts=1 sw=1 |
124 | | ---> |
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<!-- EN-Revision: 58d11dfe19531e1355980b2892964c07dd8e8068 Maintainer: ManueldG Status: ready --> |
| 3 | +<refentry xml:id="function.array-change-key-case" xmlns="http://docbook.org/ns/docbook"> |
| 4 | + <refnamediv> |
| 5 | + <refname>array_change_key_case</refname> |
| 6 | + <refpurpose>Cambia case a tutte le chiavi dell'array</refpurpose> |
| 7 | + </refnamediv> |
| 8 | + |
| 9 | + <refsect1 role="description"> |
| 10 | + &reftitle.description; |
| 11 | + <methodsynopsis> |
| 12 | + <type>array</type><methodname>array_change_key_case</methodname> |
| 13 | + <methodparam><type>array</type><parameter>array</parameter></methodparam> |
| 14 | + <methodparam choice="opt"><type>int</type><parameter>case</parameter><initializer><constant>CASE_LOWER</constant></initializer></methodparam> |
| 15 | + </methodsynopsis> |
| 16 | + <para> |
| 17 | + Restituisce un array con tutte le chiavi di un <parameter>array</parameter> convertite |
| 18 | + in maiuscolo o minuscolo. Gli indici numerici non vengono modificati. |
| 19 | + </para> |
| 20 | + </refsect1> |
| 21 | + |
| 22 | + <refsect1 role="parameters"> |
| 23 | + &reftitle.parameters; |
| 24 | + <para> |
| 25 | + <variablelist> |
| 26 | + |
| 27 | + <varlistentry> |
| 28 | + <term><parameter>array</parameter></term> |
| 29 | + <listitem> |
| 30 | + <para> |
| 31 | + L'array su cui lavorare |
| 32 | + </para> |
| 33 | + </listitem> |
| 34 | + </varlistentry> |
| 35 | + |
| 36 | + <varlistentry> |
| 37 | + <term><parameter>case</parameter></term> |
| 38 | + <listitem> |
| 39 | + <para> |
| 40 | + <constant>CASE_UPPER</constant> oppure |
| 41 | + <constant>CASE_LOWER</constant> (default) |
| 42 | + </para> |
| 43 | + </listitem> |
| 44 | + </varlistentry> |
| 45 | + |
| 46 | + </variablelist> |
| 47 | + </para> |
| 48 | + </refsect1> |
| 49 | + |
| 50 | + <refsect1 role="returnvalues"> |
| 51 | + &reftitle.returnvalues; |
| 52 | + <para> |
| 53 | + Restituisce un'array con le chiavi convertite in maiuscolo o minuscolo, oppure &false; se |
| 54 | + <parameter>input</parameter> non è un array. |
| 55 | + </para> |
| 56 | + </refsect1> |
| 57 | + |
| 58 | + <refsect1 role="errors"> |
| 59 | + &reftitle.errors; |
| 60 | + <para> |
| 61 | + Lancia un <constant>E_WANRING</constant> se <parameter>input</parameter> |
| 62 | + non è un array. |
| 63 | + </para> |
| 64 | + </refsect1> |
| 65 | + |
| 66 | + <refsect1 role="examples"> |
| 67 | + &reftitle.examples; |
| 68 | + <para> |
| 69 | + <example xml:id="function.array-change-key-case.example-1"> |
| 70 | + <title>Esempio di <function>array_change_key_case</function></title> |
| 71 | + <programlisting role="php"> |
| 72 | +<![CDATA[ |
| 73 | +<?php |
| 74 | +$input_array = array("PriMo" => 1, "SecOndO" => 4); |
| 75 | +print_r(array_change_key_case($input_array, CASE_UPPER)); |
| 76 | +?> |
| 77 | +]]> |
| 78 | + </programlisting> |
| 79 | + &example.outputs; |
| 80 | + <screen> |
| 81 | +<![CDATA[ |
| 82 | +Array |
| 83 | +( |
| 84 | + [PRIMO] => 1 |
| 85 | + [SECONDO] => 2 |
| 86 | +) |
| 87 | +]]> |
| 88 | + </screen> |
| 89 | + </example> |
| 90 | + </para> |
| 91 | + </refsect1> |
| 92 | + |
| 93 | + <refsect1 role="notes"> |
| 94 | + &reftitle.notes; |
| 95 | + <note> |
| 96 | + <para> |
| 97 | + Se un array ha degli indici che risulteranno identici dopo l'esecuzione |
| 98 | + di questa funzione (es. "<literal>keY</literal>" e "<literal>kEY</literal>"), |
| 99 | + il valore dell'ultimo indice sovrascrivera' gli altri. |
| 100 | + </para> |
| 101 | + </note> |
| 102 | + </refsect1> |
| 103 | +</refentry> |
| 104 | + |
| 105 | +<!-- Keep this comment at the end of the file |
| 106 | +Local variables: |
| 107 | +mode: sgml |
| 108 | +sgml-omittag:t |
| 109 | +sgml-shorttag:t |
| 110 | +sgml-minimize-attributes:nil |
| 111 | +sgml-always-quote-attributes:t |
| 112 | +sgml-indent-step:1 |
| 113 | +sgml-indent-data:t |
| 114 | +indent-tabs-mode:nil |
| 115 | +sgml-parent-document:nil |
| 116 | +sgml-default-dtd-file:"~/.phpdoc/manual.ced" |
| 117 | +sgml-exposed-tags:nil |
| 118 | +sgml-local-catalogs:nil |
| 119 | +sgml-local-ecat-files:nil |
| 120 | +End: |
| 121 | +vim600: syn=xml fen fdm=syntax fdl=2 si |
| 122 | +vim: et tw=78 syn=sgml |
| 123 | +vi: ts=1 sw=1 |
| 124 | +--> |
0 commit comments