Archive for the 'php' Category

convert_uudecode

convert_uudecode
(PHP 5)
convert_uudecode — Decode a uuencoded string
Description
string convert_uudecode ( string $data )
convert_uudecode() decodes a uuencoded string.
Parameters

data
The uuencoded data.

Return Values
Returns the decoded data as a string.
Examples
Example 2371. convert_uudecode() example

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

Read Full Post »

convert_cyr_string

convert_cyr_string
(PHP 4, PHP 5)
convert_cyr_string — Convert from one Cyrillic character set to another
Description
string convert_cyr_string ( string $str, string $from, string $to )
Converts from one Cyrillic character set to another.
Parameters

str
The string to be converted.

from
The source Cyrillic character set, as a […]

Read Full Post »

« Prev