上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: 1.预备知识 一直以来很少看到有多少人使用php的socket模块来做一些事情,大概大家都把它定位在脚本语言的范畴内吧,但是其实php的socket模块可以做很多事情,包括做ftplist,http post提交,smtp提交,组包并进行特殊报文的交互(如smpp协议),whois查询。这些都是比较 阅读全文
posted @ 2021-04-02 11:00 不吃肉的羊 阅读(158) 评论(0) 推荐(0) 编辑
摘要: Mysql case 判断数据中特定的值来创建新的字段来存储修改后内容 可以用在统计数据中某个值的个数 表中数据: 阅读全文
posted @ 2021-03-30 15:57 不吃肉的羊 阅读(297) 评论(0) 推荐(0) 编辑
摘要: //禁止鼠标右击 document.oncontextmenu = function() { event.returnValue = false; }; //禁用开发者工具F12 document.onkeydown = document.onkeyup = document.onkeypress 阅读全文
posted @ 2021-03-04 17:08 不吃肉的羊 阅读(1348) 评论(0) 推荐(0) 编辑
摘要: <style> .ipAdress { display: flex; align-items: center; border: 1px solid #0190FE; width: 148px; margin-right: 10px; padding: 0; } .ipAdress li { posi 阅读全文
posted @ 2021-02-03 19:37 不吃肉的羊 阅读(1911) 评论(4) 推荐(0) 编辑
摘要: 转自:https://www.php.cn/blog/detail/25535.html 1. countdown 时间格式处理 /** * Notes: [countdown 时间格式处理] * Author HeZe * Date 2020/12/23 18:42 * @param $unix_ 阅读全文
posted @ 2021-01-13 09:49 不吃肉的羊 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 参考elementUI官网以及网上的其他一些资料。话不多说,直接贴代码。htmt部分: <div id="app" style="width: 500px;"> <el-form :model="environmentForm" ref="environmentForm"> <el-row :gut 阅读全文
posted @ 2020-12-17 10:47 不吃肉的羊 阅读(1292) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>日历</title 阅读全文
posted @ 2020-12-10 14:25 不吃肉的羊 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/cherylgi/p/13535956.html 1、table 部分 :row-key='getRowKeys':expand-row-keys="expands"@expand-change="expandSelect" 2、column 部 阅读全文
posted @ 2020-12-09 17:30 不吃肉的羊 阅读(720) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
posted @ 2020-12-09 17:26 不吃肉的羊 阅读(134) 评论(0) 推荐(0) 编辑
摘要: function bytesToSize(value) { alert(value); alert('value'); debugger; if (value 0) return '0 B'; var k = 1024, // or 1024 sizes = ['B', 'KB', 'MB', 'G 阅读全文
posted @ 2020-12-08 14:35 不吃肉的羊 阅读(223) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 10 下一页