摘要:
Laravel 出现"RuntimeException inEncrypter.php line 43: The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths."问题的解决办法首 阅读全文
摘要:
基本格式 //条件?真结果:假结果 var test = a>0?a:-a 对应if...else语句 if (条件) {真结果} else {假结果} if(a>0){ x = a }else{ x= -a } 三元表达式嵌套 //条件1?真结果1:(条件2?真结果2:(条件3:真结果3?假结果3 阅读全文