mysql coalesce json处理操作符

COALESCE 返回第一个非空值select COALESCE(country,extra_fields->>'$.buyer_nationality') as country_code可以多个参数->和->>差异-> 永远返回的是json,例如返回字符串abc,则返回的是"abc",有引号 ->> 返回本来的值,没有引...

继续阅读 »

打包phar直接运行

准备下载swoole cli,其中有一个pack-sfx.phpphp.ini中有个phar.readonly = Off打包phar<?php // 禁止缓冲输出,以便立即看到错误信息 ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); // 确保Ph...

继续阅读 »

php 流式请求

原生curl$ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $this->chatService->api); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_HTTPH...

继续阅读 »

小程序 animation 失效 高度闪烁

animation无效uniapp开发时候 v-show和animation一起使用必须在nextTick中执行动画,否则无效this.$nextTick(() => { this.showStar() })该表的值必须在style中写上animation高度闪一次小程序性能较差,animation本质上使用style内联导致高度有一次闪烁,可以使用内联的style写死widt...

继续阅读 »

微信小程序 video 播放时候开始总有一段黑屏解决办法

不知是何原因,微信小程序video播放经常有一块黑屏,经过反复测试video不能被隐藏display:none;可以使用z-index上来就静音默认播放,再次播放时候不会黑屏哪怕使用同一个url,不同的video标签,他还是会黑屏也可能跟分辨率有关,我发现如果是高分辨率就会黑比较久,mp4也有好多个压缩级别,都有影响

继续阅读 »