摘要: 转载请注明来源.侵权必究 统计某端口的连接ip 并统计连接ip的数量 按数量降序排序 netstat -tn | grep ':80 ' | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -nr 统计某端口的连接数 netstat -l 阅读全文
posted @ 2024-08-13 22:34 狂客 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 转载请著名来源,侵权必究 //属性接口 declare(strict_types=1); namespace app\common\attribute; interface AttributeHandler { public function handler(mixed $handler); } / 阅读全文
posted @ 2024-08-13 16:48 狂客 阅读(65) 评论(0) 推荐(0) 编辑