通过 php 发送 icq 消息
Send icq message via php
我需要从 php 向 icq 发送消息。我正在使用 WebIcqPro。
<?php
require_once('WebIcqPro.class.php');
$uin = '******';
$pass = '******';
$to_uin = '******';
$icq = new WebIcqPro();
$icq->debug = true;
$icq->setOption('UserAgent', 'miranda');
if ($icq->connect($uin, $pass)) {
$icq->sendMessage($to_uin, 'Hello! This is a test message');
} else {
die('ICQ connection error: ' . $icq->error);
}
此代码失败并出现错误:错误:服务器关闭连接
P.S.: 可能还有其他 working icq 类?
增加限制。
编辑文件 "WebIcqPro.class.php":
// $this->setTimeout(6, 0);
$this->setTimeout(60, 60000);
我需要从 php 向 icq 发送消息。我正在使用 WebIcqPro。
<?php
require_once('WebIcqPro.class.php');
$uin = '******';
$pass = '******';
$to_uin = '******';
$icq = new WebIcqPro();
$icq->debug = true;
$icq->setOption('UserAgent', 'miranda');
if ($icq->connect($uin, $pass)) {
$icq->sendMessage($to_uin, 'Hello! This is a test message');
} else {
die('ICQ connection error: ' . $icq->error);
}
此代码失败并出现错误:错误:服务器关闭连接
P.S.: 可能还有其他 working icq 类?
增加限制。
编辑文件 "WebIcqPro.class.php":
// $this->setTimeout(6, 0);
$this->setTimeout(60, 60000);