convert_uuencode()是PHP中的內置函數。 convert_uuencode()函數使用uuencode算法對字符串進行編碼。 Uuencode編碼將所有字符串(包括二進製數據)轉換為可打印的字符,從而使它們對於網絡傳輸而言是安全的。
用法:
String convert_uuencode($string)
參數:此函數接受單個參數$string,這是uuencode所需的字符串。
返回值:此函數返回一個表示uuencoded數據的字符串。
例子:
Input:"Good Morning..." Output:/1V]O9"!-;W)N:6YG+BXN ` Input:"I love my india" Output:/22!L;W9E(&UY(&EN9&EA`
下麵的程序演示了convert_uuencode()函數:
<?php
// PHP program illustrate the
// convert_uuencode() function
// Input String
$str = "geeks for geeks!";
// Encoding the string
$encodeString = convert_uuencode($str);
// printing encoded string
echo $encodeString . "\n";
// Decode the string
$decodeString = convert_uudecode($encodeString);
echo $decodeString;
?>
輸出:
09V5E:W, @9F]R(&=E96MS(0`` geeks for geeks!
參考:
http://php.net/manual/en/function.convert-uuencode.php
相關用法
- CSS hsl()用法及代碼示例
- PHP abs()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP cos( )用法及代碼示例
- p5.js hex()用法及代碼示例
- PHP end()用法及代碼示例
- p5.js str()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP each()用法及代碼示例
- p5.js cos()用法及代碼示例
- p5.js log()用法及代碼示例
- p5.js arc()用法及代碼示例
注:本文由純淨天空篩選整理自Twinkl Bajaj大神的英文原創作品 PHP | convert_uuencode() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。