<script type="text/javascript">
var randomnumber=Math.floor(Math.random()*10000);
var sr = 'http://www.example.com/example.js?rnd='+randomnumber;
document.write("<script type=\"text/javascript\" src=\"" + sr + "\" id-value-test=\"100\" > </script>");
</script>
Run Code Online (Sandbox Code Playgroud)
在id-value-test获得未终止的字符串文字.任何想法?
我生成了一个唯一的自定义密钥,需要使用此密钥加密一个值。它的返回错误
唯一支持的密码是具有正确密钥长度的 AES-128-CBC 和 AES-256-CBC。
public function test(){
$key = $this->generateRandomKey();
$newEncrypter = new \Illuminate\Encryption\Encrypter( $key, Config::get('app.cipher') );
echo $encrypted = $newEncrypter->encrypt( 'hello' );
}
protected function generateRandomKey()
{
return 'base64:'.base64_encode(
Encrypter::generateKey(Config::get('app.cipher'))
);
}
Run Code Online (Sandbox Code Playgroud) 安装在本地计算机Docker和Kohana框架上。
我无法建立与数据库的连接。
发生错误:
Database_Exception [ 2 ]: mysqli_connect(): Server sent charset (255) unknown to the client. Please, report to the developers
Run Code Online (Sandbox Code Playgroud)
没事吗 datebase.php
return array
Run Code Online (Sandbox Code Playgroud)
('default'=> array('type'=>'MySQLi','connection'=> array('hostname'=>'mysql','database'=>'media','username'=>'root' ,'password'=>'root','persistent'=> FALSE,),'table_prefix'=>'','charset'=>'utf8mb4','caching'=> FALSE,