PHP convert_uudecode()

ກໍານົດ

ການລົບການສັນນະສານວິສະວະກອນ uuencode:

<?php
$str = ",2&5L;&\@=V]R;&0A `";
echo convert_uudecode($str);
?>

ຫົວຂໍ້ການດຳເນີນພາຍໃນ

ການກໍານົດ ແລະ ການນໍາໃຊ້

ການລົບການສັນນະສານວິສະວະກອນ uuencode ໂດຍ ຫົວຂໍ້ convert_uudecode().

ການນໍາໃຊ້ບັນດາຫົວຂໍ້: convert_uuencode() ການນໍາໃຊ້ບັນດາຫົວຂໍ້.

ຂອບຂອງພາສາ:

convert_uudecode(string)
ຄວາມຕ້ອງການ ການອະທິບາຍ
string ຈຳເປັນ. ຕາມຄຳສັ່ງເປັນການລົບການສັນນະສານ uuencode.

ລາຍລະອຽດດ້ານເຕັກນິກ

ຄວາມຜະລິດ: ການຄືນມາເປັນການສັນນະສານທີ່ຄືນມາເປັນວິສະວະກອນ
PHP ສະບັບ: 5+

ກໍານົດຫຼາຍກວ່າ

ກໍານົດ 1

ການວັດຫານການສັນນະສານ ແລະ ການລົບການສັນນະສານ

<?php
$str = "Hello world!";
// ການການວັດຫານການສັນນະສານ
$encodeString = convert_uuencode($str);
echo $encodeString . "<br>";
// ການການລົບການສັນນະສານ
$decodeString = convert_uudecode($encodeString);
echo $decodeString;
?>

ຫົວຂໍ້ການດຳເນີນພາຍໃນ