1
0
mirror of https://github.com/php/doc-ja.git synced 2026-03-30 19:12:28 +02:00
Files
archived-doc-ja/reference/strings/functions/convert-uuencode.xml
TAKAGI Masahiro 85f0b7410b sync with en.
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@198603 c90b9560-bf6c-de11-be94-00142212c4b1
2005-10-17 12:36:56 +00:00

67 lines
1.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.1 $ -->
<!-- EN-Revision: 1.4 Maintainer: takagi Status: ready -->
<refentry id="function.convert-uuencode">
<refnamediv>
<refname>convert_uuencode</refname>
<refpurpose>
文字列を uuencode する
</refpurpose>
</refnamediv>
<refsect1>
<title>説明</title>
<methodsynopsis>
<type>string</type><methodname>convert_uuencode</methodname>
<methodparam><type>string</type><parameter>data</parameter></methodparam>
</methodsynopsis>
<para>
<function>convert_uuencode</function> は、uuencode アルゴリズムを
使用して文字列をエンコードします。
</para>
<para>
uuencode はすべての文字(バイナリを含む)を表示可能な文字に変換し、
ネットワーク上での転送を可能にします。uuencode されたデータは、
元のデータより約 35% 大きくなります。
</para>
<para>
<example>
<title><function>convert_uuencode</function> の例</title>
<programlisting role="php">
<![CDATA[
<?php
$some_string = "test\ntext text\r\n";
echo convert_uuencode($some_string);
?>
]]>
</programlisting>
</example>
</para>
<para>
<function>convert_uudecode</function> および
<function>base64_encode</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
-->