时钟组件(AnalogClock和DigitalClock)的功能与用法

时钟UI组件是两个非常简单的组件,DigitalClock本身就继承了TextView——也就是说它本身就是文本框,只是它里面显示的内容总是当前时间。与TextView不同的是为DigitalCloc … Continue reading 时钟组件(AnalogClock和DigitalClock)的功能与用法

php错误Allowed memory size of 134217728 bytes exhausted解决办法php内存耗尽报错

今天再执行禅道的备份脚本时提示如下错误 Allowed memory size of 134217728 bytes exhausted tried to allocate 43769176 byte … Continue reading php错误Allowed memory size of 134217728 bytes exhausted解决办法php内存耗尽报错

Deprecated: Array and string offset access syntax with curly braces is deprecated in 提示原因

PHP7.4在2019年11月28日正式发布。其中有一个变化是不再能够使用花括号来访问数组或者字符串的偏移,下面来具体看一下。 假设我们有一个数组如下: $arr = [‘a’,’b’,’c’]; 现 … Continue reading Deprecated: Array and string offset access syntax with curly braces is deprecated in 提示原因

宝塔面板nginx提示证书错误:nginx: [emerg] BIO_new_file”/etc/letsencrypt/live//fullchain.pem” failed处理方法

今天收到邮件提示网站ssl证书错误,在阿里云申请新的证书后,在宝塔里更换key和pem,保存时提示证书错误: 证书错误: nginx: [emerg] BIO_ new_ file’ /etc/let … Continue reading 宝塔面板nginx提示证书错误:nginx: [emerg] BIO_new_file”/etc/letsencrypt/live//fullchain.pem” failed处理方法

MySQL的InnoDB引擎中事务日志ib_logfile0和ib_logfile1详解

概念: 事务日志或称redo日志,在mysql中默认以ib_logfile0,ib_logfile1名称存在,可以手工修改参数,调节开启几组日志来服务于当前mysql数据库,mysql采用顺序,循环写 … Continue reading MySQL的InnoDB引擎中事务日志ib_logfile0和ib_logfile1详解