convert_uudecode

(PHP 5, PHP 7)

convert_uudecodeDecode a uuencoded string

Descrierea

convert_uudecode ( string $string ) : string|false

convert_uudecode() decodes a uuencoded string.

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

Parametri

string

The uuencoded data.

Valorile întoarse

Returns the decoded data as a string sau false în cazul eșecului.

Exemple

Example #1 convert_uudecode() example

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

Exemplul de mai sus va afișa:

I love PHP!

A se vedea și

add a note add a note

User Contributed Notes

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