mirror of
https://github.com/php/doc-it.git
synced 2026-03-24 15:42:46 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/it/trunk@314704 c90b9560-bf6c-de11-be94-00142212c4b1
66 lines
2.0 KiB
XML
66 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- EN-Revision: n/a Maintainer: darvina Status: ready -->
|
|
<!-- splitted from ./en/functions/strings.xml, last change in rev 1.2 -->
|
|
<refentry xml:id="function.strtolower" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>strtolower</refname>
|
|
<refpurpose>Converte in minuscolo una stringa</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Descrizione</title>
|
|
<methodsynopsis>
|
|
<type>string</type><methodname>strtolower</methodname>
|
|
<methodparam><type>string</type><parameter>str</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
La funzione restituisce la stringa <parameter>string</parameter> con tutti i caratteri
|
|
alfabetici convertiti in minuscolo.
|
|
</para>
|
|
<para>
|
|
Nota: i caratteri 'alfabetici' sono determinati in base alle impostazioni locali. Ciò
|
|
significa, ad esempio, che nelle impostazioni locali di default del "C", il carattere umlaut-A (Ä)
|
|
non sarà convertito.
|
|
</para>
|
|
<example>
|
|
<title>Esempio di uso di <function>strtolower</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$str = "Mary Had A Little Lamb and She LOVED It So";
|
|
$str = strtolower($str);
|
|
echo $str; // Prints mary had a little lamb and she loved it so
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
|
|
¬e.bin-safe;
|
|
|
|
<para>
|
|
Vedere anche: <function>strtoupper</function>, <function>ucfirst</function>,
|
|
<function>ucwords</function> e <function>mb_strtolower</function>.
|
|
</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
|
|
-->
|