mirror of
https://github.com/php/doc-it.git
synced 2026-03-24 23:52:12 +01:00
* Convert Italian translation from 'matrice' to 'array' * Fix grammar error * Fix typo * "associativo" instead of "associativa" * "composto" instead of "composta" * Clarification * "indicizzato" instead of "indicizzata" --------- Co-authored-by: Davide Pastore <pasdavide@gmail.com>
131 lines
3.0 KiB
XML
131 lines
3.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- EN-Revision: n/a Maintainer: darvina Status: ready -->
|
|
<refentry xml:id="function.str-split" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>str_split</refname>
|
|
<refpurpose>
|
|
Converte una stringa in un array
|
|
</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Descrizione</title>
|
|
<methodsynopsis>
|
|
<type>array</type><methodname>str_split</methodname>
|
|
<methodparam><type>string</type><parameter>string</parameter></methodparam>
|
|
<methodparam choice="opt"><type>int</type><parameter>split_length</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Converte una stringa in un array. Se viene passato
|
|
il parametro opzionale <parameter>split_length</parameter>, l'array
|
|
restituito sarà composto da segmenti, ciascuno della lunghezza di
|
|
<parameter>split_length</parameter> caratteri, in caso contrario ciascun segmento
|
|
sarà lungo un carattere.
|
|
</para>
|
|
<para>
|
|
&false; è restituito se <parameter>split_length</parameter> è minore
|
|
di 1. Se <parameter>split_length</parameter> supera la lunghezza
|
|
di <parameter>string</parameter>, sarà restituita l'intera stringa
|
|
come primo (ed unico) elemento dell'array.
|
|
</para>
|
|
<para>
|
|
<example>
|
|
<title>Esempi di uso di <function>str_split</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
|
|
$str = "Hello Friend";
|
|
|
|
$arr1 = str_split($str);
|
|
$arr2 = str_split($str, 3);
|
|
|
|
print_r($arr1);
|
|
print_r($arr2);
|
|
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
<para>
|
|
L'output potrà essere:
|
|
</para>
|
|
<screen>
|
|
<![CDATA[
|
|
Array
|
|
(
|
|
[0] => H
|
|
[1] => e
|
|
[2] => l
|
|
[3] => l
|
|
[4] => o
|
|
[5] =>
|
|
[6] => F
|
|
[7] => r
|
|
[8] => i
|
|
[9] => e
|
|
[10] => n
|
|
[11] => d
|
|
)
|
|
|
|
Array
|
|
(
|
|
[0] => Hel
|
|
[1] => lo
|
|
[2] => Fri
|
|
[3] => end
|
|
)
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</para>
|
|
<para>
|
|
<example>
|
|
<title>Esempi relativi a <function>str_split</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
|
|
$str = "Hello Friend";
|
|
|
|
echo $str{0}; // H
|
|
echo $str{8}; // i
|
|
|
|
// Creates: array('H','e','l','l','o',' ','F','r','i','e','n','d')
|
|
$arr1 = preg_split('//', $str, -1, PREG_SPLIT_NO_EMPTY);
|
|
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
<para>
|
|
Vedere anche: <function>chunk_split</function>,
|
|
<function>preg_split</function>,
|
|
<function>split</function>,
|
|
<function>count_chars</function>,
|
|
<function>str_word_count</function> e
|
|
<link linkend="control-structures.for">for</link>.
|
|
</para>
|
|
</refsect1>
|
|
</refentry>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|