convert_uudecode

(PHP 5, PHP 7)

convert_uudecodeDecode a uuencoded string

Opis

convert_uudecode ( string $data ) : string

convert_uudecode() decodes a uuencoded string.

Informacja: convert_uudecode() neither accepts the begin nor the end line, which are part of uuencoded files.

Parametry

data

The uuencoded data.

Zwracane wartości

Returns the decoded data as a string lub FALSE w przypadku niepowodzenia.

Przykłady

Przykład #1 convert_uudecode() example

<?php
echo convert_uudecode("+22!L;W9E(%!(4\"$`\n`");
?>

Powyższy przykład wyświetli:

I love PHP!

Zobacz też:

add a note add a note

User Contributed Notes

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