App下载

demo_func_string_convert_encode_decode 在线工具

demo_func_string_convert_encode_decode 在线工具

<?php
$str = "Hello world!";
// Encode the string
$encodeString = convert_uuencode($str);
echo $encodeString . "<br>";

// Decode the string
$decodeString = convert_uudecode($encodeString);
echo $decodeString;
?>
运行结果