5个月前 (06-20)
阅读(807)
评论(0)
报错信息如下:
In file included from /tmp/vbox.0/combined-os-specific.c:44:0:
/tmp/vbox.0/r0drv/linux/memuserkernel-r0drv-linux.c: 在函数‘VBoxGuest_RTR0MemUserIsValidAddr’中:
/tmp/vbox.0/r0drv/linux/memuse...
5个月前 (06-14)
阅读(534)
评论(0)
SELECT v.SQL_TEXT,m.* FROM (select distinct snap_id,
sql_id,
EXECUTIONS_DELTA,
trunc(max(ELAPSED_TIME_DELTA)
OVER(PARTITION BY...
5个月前 (06-12)
阅读(606)
评论(0)
用到一个开源库:
https://imagettftextblur.agjgd.org/examples/shadow/
github地址:https://github.com/andrewgjohnson/imagettftextblur
使用示例:
//引入文字发光
include __ROOTDIR__."libs/imagettftextblur/ima...
6个月前 (06-04)
阅读(579)
评论(0)
参考:
https://zhidao.baidu.com/question/620647941694492292.html
语句就是:
orderby("replace(fh_sign_contract.status_flag,2,99) asc,fh_sign_contract.updated desc");
字符串排序还是很坑的。
6个月前 (06-04)
阅读(539)
评论(0)
方法很多,记录一个最简单的,提供rpm内核的官网地址:https://elrepo.org/ 原本提供内核的官网是:The Linux Kernel Archives第一步:
rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
后面的就根据自己版本情况选择了,官方给出的说明如下:
To install ELRep...
6个月前 (06-03)
阅读(533)
评论(0)
需求,从接口获取模板列表,并对获取到模板进行赋值
尝试多次,主要在构造data数组的地方:
$app=util::getWeiXin();
$api = $app->getClient();
$response = $api->post('/cgi-bin/template/get_all_private_template');
...