🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
~~~ public function encrypt() { $key = "1111111111"; $iv = "1111111111"; $data = [ 'source' => 'source23', 'applyName' => '', 'phone' => 13605573443, 'age' => 22, 'amount' => '4.00', 'loanPeriod' => '3', 'cityId' => '450800', 'income' => 3000, // ........ ]; $str = json_encode($data, true); $encryptResult = openssl_encrypt($str, 'aes-128-cbc', $key, true, $iv); // $encryptResult = base64_encode($encryptResult); // base64 'msg' => '', return $encryptResult; } ~~~