Dutch PHP Conference 2025 - Call For Papers

convert_uudecode

(PHP 5, PHP 7, PHP 8)

convert_uudecodeDecode a uuencoded string

Опис

convert_uudecode(string $string): string|false

convert_uudecode() decodes a uuencoded string.

Зауваження: convert_uudecode() neither accepts the begin nor the end line, which are part of uuencoded files.

Параметри

string

The uuencoded data.

Значення, що повертаються

Returns the decoded data as a string або false в разі помилки.

Приклади

Приклад #1 convert_uudecode() example

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

Поданий вище приклад виведе:

I love PHP!

Прогляньте також

add a note

User Contributed Notes

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