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: Sat, 07 Jan 2012

view this page in

imap_binary

(PHP 4, PHP 5)

imap_binaryKonvertiert einen 8 Bit String in einen Base64 codierten String

Beschreibung

string imap_binary ( string $string )

Konvertiert einen 8 Bit String in einen Base64 codierten String gemäß » RFC2045, Abschnitt 6.8.

Parameter-Liste

string

Der zu konvertierende 8 Bit String.

Rückgabewerte

Liefert einen Base64 kodierten String.

Siehe auch



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

<?php

chunk_split
(base64_encode($string), 60);

?>

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