上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 49 下一页
摘要: 一、功能界面 具体的详细代码:https://github.com/yangsphp/websocket-master/tree/master 二、具体代码实现 1、前端代码如下 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8 阅读全文
posted @ 2019-04-24 15:18 样子2018 阅读(7002) 评论(14) 推荐(0) 编辑
摘要: /** * @param $ip 待查询的ip * @return mixed */ function getIpAddressInfo($ip) { $ipurl = 'http://api.ip138.com/query/?ip=' . $ip . '&datatype=txt'; $ipheader = array('token:注册的token'); $ip... 阅读全文
posted @ 2019-04-23 10:31 样子2018 阅读(699) 评论(0) 推荐(0) 编辑
摘要: initialize($config); } /** * 初始化数据 * @param array $config 配置文件数组 */ public function initialize(array $config = []) { $this->host = $config['host']; $th... 阅读全文
posted @ 2019-04-22 12:27 样子2018 阅读(581) 评论(0) 推荐(0) 编辑
摘要: 效果图如下: 阅读全文
posted @ 2019-04-16 14:07 样子2018 阅读(7129) 评论(0) 推荐(0) 编辑
摘要: 数组打印结果为 参考文档:https://github.com/yangsphp/simple_html_dom-master 阅读全文
posted @ 2019-04-05 23:21 样子2018 阅读(2661) 评论(0) 推荐(0) 编辑
摘要: /** * @param $array * @param $keys * @param string $sort * @return array */ function arraySort($array, $keys, $sort = 'asc') { $newArr = $valArr = arr 阅读全文
posted @ 2019-03-25 10:34 样子2018 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 一、firewalld的基本使用 启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用 : systemctl disable firewalld 开机启用 : 阅读全文
posted @ 2019-03-04 16:05 样子2018 阅读(3325) 评论(0) 推荐(1) 编辑
摘要: 一、程序目录结构 二、代码展示 附LayIM开发文档:https://www.layui.com/doc/modules/layim.html 1、前端代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>w 阅读全文
posted @ 2019-02-26 09:06 样子2018 阅读(1430) 评论(0) 推荐(0) 编辑
摘要: 一、微信公众号号后台支付配置 附微信支付参考文档:https://pay.weixin.qq.com/wiki/doc/api/index.html 二、微信支付类封装 该类可以实现付款码支付、JSAPI支付、Native支付 先调用getPrepayId方法,后再调用get_package方法,返 阅读全文
posted @ 2019-02-16 16:34 样子2018 阅读(4334) 评论(0) 推荐(1) 编辑
摘要: 一、参数说明 $handle: 文件资源 $operation: 锁的类型 LOCK_SH: 共享锁 LOCK_EX: 排他锁 LOCK_UN: 释放锁 $wouldblock: 设置为true的时候,锁定文件时,会阻止其他进程 二、具体实现代码 阅读全文
posted @ 2019-02-16 14:44 样子2018 阅读(1054) 评论(0) 推荐(0) 编辑
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 49 下一页