原解决部分mp4视频在ios上无法播放问题
1、问题描述
mp4视频在安卓上全部能播放,部分mp4视频在ios不能播放。表现为刚开始缓冲加载几秒钟后,就显示加载失败的图标了,或者直接显示加载失败图标
记录-交流-Web开发知识分享
mp4视频在安卓上全部能播放,部分mp4视频在ios不能播放。表现为刚开始缓冲加载几秒钟后,就显示加载失败的图标了,或者直接显示加载失败图标
laravel-admin是一个超级棒的PHP后台框架,只用写极其少量的代码,就可以开发后台功能,不用写方法,不用创建与修改模板,开发速度是其它框架的N倍。堪称用最少的时间构建出功能完善的管理后台!!!
安装方法:
一.可参考(https://github.com/w3yyb/laravel-admin-skeleton,使用laravel 6)…
<?php //匿名函数,说白了就是“没有名字的函数”,不多说。给一段代码可能更为明白: //例一,定义匿名函数并调用 $str='world'; $func=function ($str) { echo 'hello '.$str; }; $func($str);// 输出 hello world //例二,定义匿名函数,用use 引入变量并调用 $str='world'; $func=function () use ($str) { echo 'hello '.$str; }; $func();//输出 hello world //例三 //在函数中把匿名函数返回,并且调用它 function getPrintStrFunc() { $func = function ($str) {…
<?php const FOO='BAR';//有效的valid define('FOO', 'BAR');// 有效的valid if (1) { const FOO='BAR';//无效的invalid } if (1) { define('FOO', 'BAR');// 有效的valid }
<?php define('FOO', 'BAR', true); //不区分大小写的常量的声明已从php7.4被弃用。现在将其TRUE作为第三个参数传递
响应式网页分辨率分为以下5个区间。
…
网站与h5手机网站,APP qq,微信登录与分享解决方法
一.Qq 登录与分享
1)分享
网页分享:
1对于分享 https://github.com/w3yyb/NativeShare 更方便(需要测试浏览器兼容)(演示爱奇艺网站)
2原生分享Web share api: navigator.share(只支持ios) --(Android可以利用intent实现分享功能)
3https://connect.qq.com/index.html
4不做网页的分享功能(移动端),用qq,微信,浏览器自带的分享。(许多大站在用此方式)
总结:用 1.或3.或4.
App分享:
1 https://connect.qq.com/index.html
2)登录:(网站,app)
1 https://connect.qq.com/index.html
二.微信登录与微信分享
1)分享
网页分享:
2.原生分享Web share api: navigator.share(只支持ios)
3.不做网页的分享功能(移动端),用qq,微信,浏览器自带的分享。(许多大站在用此方式)
4.二维码网址(对于pc浏览器)…
Please also set cacertfile
to chain.pem
You may also set certfile
to cert.pem
instead of fullchain.pem
listener.wss.external.keyfile = /etc/letsencrypt/live/xxxx.com/privkey.pem
listener.wss.external.certfile = /etc/letsencrypt/live/xxxx.com/cert.pem
listener.wss.external.cacertfile = /etc/letsencrypt/live/xxxx.com/chain.pem
参考 https://github.com/emqx/emqx/issues/2306
https://webcache.googleusercontent.com/search?q=cache:6Jlnb2l5RJQJ:https://medium.com/%40emqtt/using-lets-encrypt-certificates-in-emq-b11e0e57efa6+&cd=1&hl=en&ct=clnk
…
PHP curl 发送GET POST PUT DELETE请求
<?php /** * json方式不支持GET方法 * @param $url * @param $data * @param array $header * @param string $method * @param string $type * @return bool|string */ function curlData($url, $data, $header, $method = 'GET', $type='…
…
近期评论