webman-docker 支持开发和构建使用

转载自:https://www.workerman.net/plugin/57 https://github.com/krissss/docker-webman webman docker 简介 将 docker 用于 webman 的开发和生产部署 镜像地址和 tag docker hub krisss/docker-webman:7.4-cli-alpine krisss/docker-we

- 阅读全文 -

php实现telnet访问端口

<?php /******************************************************************************************** * Copy Right (c) 2021 Capsheaf Co., Ltd. * * Author: Archibald<yangju

- 阅读全文 -

workerman,webman相关框架

官网首页:https://www.workerman.net/ 项目地址 GitHub: https://github.com/walkor/webman 码云: https://gitee.com/walkor/webman composer安装 1、创建项目 composer create-project workerman/webman 2、运行 进入webman目录 debug方式运行

- 阅读全文 -

php 生成唯一订单号5种方法

第一种 private function doCreateOrderNumber($time){   $i=1;   $dd = date('Ymd',$time);   $aa = 'OH'.$dd;   $res = $this->orderModel->query("select sn from sr_ord

- 阅读全文 -

Loganalyzer乱码及登录解决方法

查询mysql数据库编码是否为utf8:MariaDB [(none)]> show databases; +--------------------+ | Database | +--------------------+ | Syslog | | information_schema | | mysql | | pe

- 阅读全文 -

list分页的三种数据渲染做法(ajax技术)

转载自:https://blog.csdn.net/weixin_43845137/article/details/104953500 分页效果主要分为三种: 1:生成页码,点击可以切换到对应的页码 2:懒加载,点击加载更多,加载下一页 3:滚动到底部就自动加载下一页 第一种:生成页码,点击可以切换到对应的页码 (一):01:的list页的数据渲染 主要功能是: 获取第一页的内容渲染到页面 根据

- 阅读全文 -

php学习笔记(二)

语言参考 一、基本语法 (一)PHP 标记 (二)从 HTML 中分离 (三)指令分隔符 (四)注释 二、类型 (一)简介 (二)Boolean 布尔类型 (三)Integer 整型 (四)Float 浮点型 (五)String 字符串 (六)Array 数组 (七)Object 对象 (八)Resource 资源类型 (九)NULL (十)Callback 回调类型 (十一)本文档中使用的伪类型

- 阅读全文 -

浅析PHP使用include和require时的区别

例如下面的代码: include('hello.php'); echo 'include test final!';//include报错,但是会继续执行,显示:include test final! require('hello.php'); echo 'require test final!';//require报错,停止代码的执行。 一句话总结: include() 产生一个警告 requ

- 阅读全文 -