XMPPHP:PHP XMPP Library。提供的功能包括:可以连接任何XMPP1.0服务器,支持TLS加密,多种XML处理方式,持久连接等。
一个发送消息的例子:
<?php include("xmpp.php"); $conn = new XMPP('talk.google.com', 5222, 'username', 'password', 'xmpphp', 'gmail.com', $printlog=False, $loglevel=LOGGING_INFO); $conn->connect(); $conn->processUntil('session_start'); $conn->message('someguy@someserver.net', 'This is a test message!'); $conn->disconnect(); ?>
官网:https://code.google.com/p/xmpphp/