04 2020 档案
摘要:直接上代码吧 1.新建index.php 执行php index.php 2.新建文件index2.php 3.3秒后输出
阅读全文
摘要:$point=[ 'lng'=>121.427417, 'lat'=>31.20357 ]; $arr=[ [ 'lng'=>121.23036, 'lat'=>31.218609 ], [ 'lng'=>121.233666, 'lat'=>31.210579 ], [ 'lng'=>121.24
阅读全文
摘要:rm -rf /tmp/php-cgi-71.sock 删除在重新启动php-fpm即可解决
阅读全文
摘要:1.修改Mysql字符集配置 或者通过命令 ALTER DATABASE database_name CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci; 2. 修改tp6/5 的database 配置 数据库默认编码(charset),utf-
阅读全文
摘要:function timediff($begin_time, $end_time) { $second = $end_time - $begin_time; //结束时间戳减去当前时间戳 // echo $second; $day = floor($second / 3600 / 24); //倒计
阅读全文