convert_uudecode

(PHP 5)

convert_uudecodeDecode a uuencoded string

Beskrivelse

string convert_uudecode ( string $data )

convert_uudecode() decodes a uuencoded string.

Parametre

data

The uuencoded data.

Returnerings Værdier

Returns the decoded data as a string.

Eksempler

Eksempel #1 convert_uudecode() example

<?php
/* Can you imagine what this will print? :) */
echo convert_uudecode("+22!L;W9E(%!(4\"$`\n`");
?>

Se også

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top