我正在尝试提取附加到网址末尾的加密电子邮件。
我想获取加密的电子邮件,解密并查找具有相同电子邮件的记录,并从该表中提取ID并将其插入另一个表中。
$password = "hogehoge";
$gethex = hex2bin($hex);
$decrypt = openssl_decrypt($gethex, 'aes-256-ecb', $password);
$user = $this->userinfo->getUserEmail($decrypt);
答案 0 :(得分:1)
在laravel中获取所有请求参数。
use Input;
$params = Input::all();