Codeigniter - 缩短加密时间

时间:2015-03-09 02:05:21

标签: php codeigniter encryption

我总是加密用户评论的帖子ID。

所以它总是像:

http://localhost/comments/V1r4AERSrvnGRmxQmsIHbM8Fsd~nJ6hv.gRR88wZIuwdSO08e.5O5ny0ChUOZ8biYbYEabI3jnGzFbcSE2YuEw--

我希望它在长度上要短得多。如下所示:

http://localhost/comments/V1r40239811 

有没有办法做到这一点?

我如何解码:

$pid_encrypt = $this->uri->segment(3);
$pid = $this->encrypt->decode($pid_encrypt);

感谢。

1 个答案:

答案 0 :(得分:-2)

我会说用另一种更短的加密再加密它然后再解码2次。