我想我的網址參數進行加密,例如: http://localhost/myapps/user/profile/john 到 http://localhost/myapps/user/profile/URL在Codeigniter中如何加密和解密。每次刷新加密值變化
在笨{加密「約翰」的值}。
其他手每刷新一次加密值改變爲特定數據。但我需要這個靜態(對於特定輸入值總是唯一的值)。
我想我的網址參數進行加密,例如: http://localhost/myapps/user/profile/john 到 http://localhost/myapps/user/profile/URL在Codeigniter中如何加密和解密。每次刷新加密值變化
在笨{加密「約翰」的值}。
其他手每刷新一次加密值改變爲特定數據。但我需要這個靜態(對於特定輸入值總是唯一的值)。
,你可以用它作爲笨庫。 – Pedro
謝謝。我已經實現了這一點,但每一次刷新加密值都會改變,所以我不能回到原始數據。 – imsyedahmed
抱歉,現在這工作正常。 – imsyedahmed
$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.
請詳細解釋如何解決問題 – Adonis
http://stackoverflow.com/a/10416814/337055 – Philip