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