cvs: phpdoc-da /reference/strings/functions str-shuffle.xml
[email protected] ("Tom Sommer")
| Newsgroups | php.doc.da |
|---|---|
| Message-ID | <cvstomsommer1089487868@cvsserver> |
tomsommer Sat Jul 10 15:31:08 2004 EDT
Added files:
/phpdoc-da/reference/strings/functions str-shuffle.xml
Log:
Initial translation
http://cvs.php.net/co.php/phpdoc-da/reference/strings/functions/str-shuffle.xml?r=1.1&p=1
Index: phpdoc-da/reference/strings/functions/str-shuffle.xml
+++ phpdoc-da/reference/strings/functions/str-shuffle.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<!-- EN-Revision: 1.2 Maintainer: tomsommer Status: ready -->
<refentry id="function.str-shuffle">
<refnamediv>
<refname>str_shuffle</refname>
<refpurpose>Blander tilfældigt en string</refpurpose>
</refnamediv>
<refsect1>
<title>Beskrivelse</title>
<methodsynopsis>
<type>string</type><methodname>str_shuffle</methodname>
<methodparam><type>string</type><parameter>str</parameter></methodparam>
</methodsynopsis>
<simpara>
<function>str_shuffle</function> blander en streng. En ombytning
af alle mulige er lavet.
</simpara>
<para>
<example>
<title><function>str_shuffle</function> eksempel</title>
<programlisting role="php">
<![CDATA[
<?php
$str = 'abcdef';
$shuffled = str_shuffle($str);
// Dette vil udskrive noget lig: bfdaec
echo $shuffled;
?>
]]>
</programlisting>
</example>
</para>
<simpara>
Se også <function>shuffle</function> og <function>rand</function>.
</simpara>
</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
-->