web-dev-qa-db-ja.com

PHP)を使用してXMPPサーバーに接続する方法

XMPPサーバーをセットアップし、ログインフォームを作成しました。 PHPおよびHTML。これまでにこれを行ったことがないので、PHPを使用してMySQLに接続するのと同じように、PHPを介してXMPPサーバーに接続する方法を知りたいです。

11
leeshin
<?php 
set_time_limit(0);  // some time connection take while  
require_once 'xmpp-lib/XMPPHP/XMPP.php';  
$Host = 'you Host name'; // ex.192.168.2.1  
$port = '5222'; // its defauls xmpp port 
$username = 'name@Host' // ex vivek@Host 
$pass = 'userpass';  
$conn = new XMPPHP_XMPP(Host , $port, $username, $pass, 'xmpphp','yourhost', $printlog=false, $loglevel=XMPPHP_Log::LEVEL_INFO);  
try {
         $conn->connect();
         $conn->processUntil('session_start');
         $conn->presence();
         $conn->message('anotherusername@Host', 'Hello!');
         $conn->disconnect(); 
} catch(XMPPHP_Exception $e) {
         die($e->getMessage()); 
} 
?>`enter code here`
3
vivek s vamja