mirror of
https://github.com/php/doc-de.git
synced 2026-04-29 18:03:13 +02:00
81279faa5d
git-svn-id: https://svn.php.net/repository/phpdoc/de/trunk@85109 c90b9560-bf6c-de11-be94-00142212c4b1
63 lines
1.9 KiB
XML
63 lines
1.9 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.3 $ -->
|
|
<!-- splitted from ./de/functions/strings.xml, last change in rev 1.2 -->
|
|
<!-- last change to 'strtolower' in en/ tree in rev 1.2 -->
|
|
<!-- EN-Revision: 1.2 Maintainer: tschuer Status: ready -->
|
|
<!-- OLD-Revision: 1.58/EN.1.2 -->
|
|
<refentry id="function.strtolower">
|
|
<refnamediv>
|
|
<refname>strtolower</refname>
|
|
<refpurpose>Setzt einen String in Kleinbuchstaben um</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Beschreibung:</title>
|
|
<methodsynopsis>
|
|
<type>string</type><methodname>strtolower</methodname>
|
|
<methodparam><type>string</type><parameter>str</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Gibt <parameter>string</parameter> zurück, in dem alle Buchstaben
|
|
in Kleinbuchstaben umgewandelt wurden.
|
|
</para>
|
|
<para>
|
|
Beachten Sie, dass 'Buchstaben' vom Wert locale abhängig ist. Ist
|
|
z.B. die Voreinstellung für locale "C", werden keine Umlaute (Ä,
|
|
Ü, Ö) umgewandelt.
|
|
</para>
|
|
<example>
|
|
<title><function>strtolower</function>-Beispiel:</title>
|
|
<programlisting role="php">
|
|
$str = "Dieter B. (M.T.) Ist Ein Schaf und Er LIEBT Sich So";
|
|
$str = strtolower($str);
|
|
print $str; // Gibt "dieter b. (m.t.) ist ein schaf und er liebt sich
|
|
// so" aus.
|
|
</programlisting>
|
|
</example>
|
|
<para>
|
|
Siehe auch <function>strtoupper</function>
|
|
und <function>ucfirst</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:"../../../../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
|
|
-->
|