downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

imap_body> <imap_base64
[edit] Last updated: Fri, 11 Nov 2011

view this page in

imap_binary

(PHP 4, PHP 5)

imap_binary8 ビット文字列を base64 文字列に変換する

説明

string imap_binary ( string $string )

» RFC2045, Section 6.8 に基づき)8 ビット文字列を base64 文字列に変換します。

パラメータ

string

8 ビット文字列。

返り値

base64 エンコードされた文字列を返します。

参考

  • imap_base64() - BASE64 でエンコードされたテキストをデコードする



add a note add a note User Contributed Notes imap_binary
phunction.sf.net 11-Jun-2010 10:56
Calling this function is the same as doing:

<?php

chunk_split
(base64_encode($string), 60);

?>

 
show source | credits | sitemap | contact | advertising | mirror sites