发布时间:2016-09-13 17:54:51
telnet mail.xx.com 25ehlo mail.xx.comauth loginbase64(用户名)base64(密码)mail from:xx@xx.com ##发件人rcpt to:xx@xx.com ##收件人data #发送邮件内容subject body.回车......【阅读全文】
发布时间:2016-07-30 13:26:38
点击(此处)折叠或打开#!/bin/bashfor file in /data/wwwlogs/a.com.cn/a.com.cn.2016* do echo $file cat $file| grep sssss >> all.txtdoneawk '{print $5}' all.txt.........【阅读全文】
发布时间:2016-07-14 10:46:10
若要在i ≤ R ≤ j 这个范围得到一个随机整数R ,需要用到表达式FLOOR(i + RAND() *(j – i +1))。例如, 若要在7 到 12的范围(包括7和12)内得到一个随机整数, 可使用以下语句:SELECTFLOOR(7 + (RAND() * 6));.........【阅读全文】
发布时间:2016-06-06 19:32:42
点击(此处)折叠或打开<?php$host = '10.9.8.173'; //where is the websocket server$port = 8575;$local = "http://mypc"; //url where this script run$data = "first message"; //data to be send$head = .........【阅读全文】
发布时间:2016-04-11 10:32:50
用 PHP 实现的 Daemon 类。可以在服务器上实现队列或者脱离 crontab 的计划任务。 使用的时候,继承于这个类,并重写 _doTask 方法,通过 main 初始化执行。点击(此处)折叠或打开......【阅读全文】