URL如何在Codeigniter中加密和解密。每个刷新加密值都会更改

时间:2012-05-07 13:10:03

标签: php codeigniter

我想加密我的url参数,例如: http://localhost/myapps/user/profile/johnhttp://localhost/myapps/user/profile/ {加密值为'john'}

在codeigniter中

另一方面,每个刷新加密值都会针对特定数据进行更改。但我需要这个静态(特定输入值的唯一值总是)。

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

$this->load->library('encrypt');//load this library. 
$config['encryption_key'] = "YOUR KEY"; // application/config/config.php
$this->encrypt->encode();//Data encryption and returns it as a string
$this->encrypt->decode();//Decrypts an encoded string.