我是XMPP的新手,我希望基本上將PHP連接到本地主機上的OpenFire安裝。XMPPHP和Openfire
這是我發現的一段代碼(我知道的黑客和斜槓,但我似乎無法包裹我的頭)。反正代碼只是簡單地發送一條消息:
<?php
include("xmpp.php");
//username = user without domain, "user" and not "[email protected]" - home is the resource
$conn = new XMPPHP_XMPP('my.server', 5222, 'username', 'password', 'home');
// Enables TLS - enabled by default, call before connect()!
$conn->useEncryption(true);
$conn->connect();
$conn->processUntil('session_start');
$conn->message('[email protected]', 'This is a test message!');
$conn->disconnect();
?>
我的問題是我應該代之以my.server
?試圖尋找,但我無法找到任何
而且
首頁是資源
我不知道這意味着什麼想法。
username
和password
? 是我的OpenFire上的任何用戶嗎?
我在尋找比完整解決方案更多的建議。感謝任何事情。哦,新年快樂!
你想整合你的phpMyAdmin與openfire嗎? –
這是我正在研究的一箇舊項目。從未弄明白。解釋如何將openFire與phpMyAdmin集成在一起,將會對未來的用戶非常感激,我會選中它:-) – cjds