发布网友 发布时间:2022-04-22 07:15
共3个回答
热心网友 时间:2022-06-17 08:54
用这个加密:base_encode ( string $data )
<?php
$str = 'This is an encoded string';
echo base_encode($str);
?>
用这个解密:base_decode ( string $data [, bool $strict= false ] )
<?php
$str = 'VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw==';
echo base_decode($str);
?>
热心网友 时间:2022-06-17 08:55
加密:$str = base_encode("123");
解密:base_decode($str);
热心网友 时间:2022-06-17 08:55
http://blog.163.com/hai_binbin@126/blog/static/12138860920091025113320441/