本文整理汇总了PHP中CSession::handleMsg方法的典型用法代码示例。如果您正苦于以下问题:PHP CSession::handleMsg方法的具体用法?PHP CSession::handleMsg怎么用?PHP CSession::handleMsg使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CSession
的用法示例。
在下文中一共展示了CSession::handleMsg方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: date
* 功能: 新消息到达时激活
* 作者: Kelvin
* 联系: msn:shichangguo@msn.com, qq:191848423
*/
require_once './plugins/inc/config.inc.php';
require_once './plugins/inc/utils.inc.php';
require_once './plugins/inc/session.inc.php';
$srvMobile = $argv[1];
$uri = base64_decode($argv[2]);
//消息发起人URI
$message = strip_tags(base64_decode($argv[3]));
// Base64 编码的消息
$type = base64_decode($argv[4]);
//消息类型
/*
if( $type=='text/plain' && substr($message,0,1)=='#' )
{
$time = date('Y-m-d H:i:s');
file_put_contents("/var/www/record.txt",$time."\t".$uri."\t".$message."\n",FILE_APPEND);
SendCommand("longsms $uri 谢谢您的参与!");
exit;
}
*/
$session = new CSession($srvMobile, $srvFetion, $uri);
$retMsg = $session->handleMsg($message, $type);
if ($type == 'text/plain') {
$retMsg = strip_tags(strip_tags($retMsg));
SendCommand("longsms {$uri} {$retMsg}");
} else {
SendCommand("chat {$uri} {$retMsg}");
}