<?php
// We define the source file (first parameter).
// We indicate that we want to code the file with the uu_encoded format (second parameter).
// We indicate the destination file (parameter three).
// We indicate that we only want one output file (parameter four).
// We indicate that the function can overwrite existing files (parameter five).
// We indicate that the function must call the message callback function defined internally (last parameter).
php_quick_uuencode ('C:\02 - after decoding\ST.gif', UU_ENCODED, 'C:\01 - before decoding\ST.uue', 0, true, true);
?>
|