PHP convert_uuencode() 函數
PHP convert_uuencode() 函數
定義和用法
convert_uuencode() 函數使用 uuencode 算法對字符串進行編碼。
注釋:該函數把所有字符串(包括二進制)編碼為可打印的字符,確保其數據庫存儲及網絡傳輸的安全。請記住,在重新使用數據前,請使用 convert_uudecode() 函數。
注釋:uuencoded 數據比原數據大約增大 35%。
語法
convert_uuencode(string)
參數 | 描述 |
---|---|
string | 必需。規定要進行 uuencode 編碼的字符串。 |
技術細節
返回值: | 返回 uuencoded 編碼的數據。 |
---|---|
PHP 版本: | 5+ |
更多實例
實例 1
編碼字符串,然后對它進行解碼:
<?php
$str = "Hello world!";
// Encode the string
$encodeString = convert_uuencode($str);
echo $encodeString . "<br>";
// Decode the string
$decodeString = convert_uudecode($encodeString);
echo $decodeString;
?>
$str = "Hello world!";
// Encode the string
$encodeString = convert_uuencode($str);
echo $encodeString . "<br>";
// Decode the string
$decodeString = convert_uudecode($encodeString);
echo $decodeString;
?>
運行實例 ?

相關文章
- PHP 變量
- PHP EOF(heredoc) 使用說明
- PHP 命名空間 namespace
- PHP 多維數組
- PHP 包含文件 include 和 require 語句
- PHP 文件處理
- PHP 文件上傳
- PHP 異常處理
- PHP array_count_values() 函數
- PHP array_diff_key() 函數
- PHP array_intersect() 函數
- PHP array_key_exists() 函數
- PHP array_merge_recursive() 函數
- PHP array_slice() 函數
- PHP current() 函數
- PHP each() 函數
- PHP uksort() 函數
- PHP 5 Filesystem 函數
- PHP Libxml 函數
- PHP PDO