[erledigt]icq klasse
hallo ich hab ein problem, die entsprechende klasse gibs hier
ich will folgendes tun:
die funktion ist wiefolgt aufgebaut:
so und folgendes gibt er mir dann über var_dump($flap); aus:
wie komm ich jetzt dadran was ich zugeschickt bekommen hab, wird wahrscheinlich "data" sein aber ihr seh ja selber was raus kommt
hallo ich hab ein problem, die entsprechende klasse gibs hier
ich will folgendes tun:
PHP:
$icq->recv($flap,$wait);
PHP:
function recv(&$flap,$wait=NULL){
if(!$this->connected()){
trigger_error(trigger_message('Not connected'),E_USER_WARNING);
return false;
}
if($wait===false){
$rec_blocking=$this->blocking;
$this->set_blocking(false);
}
elseif($wait!==NULL){
$rec_timeout=$this->timeout;
$this->set_timeout($wait);
}
$res=$this->_recv($flap,$wait);
if($wait===false){
$this->set_blocking($rec_blocking);
}
elseif($wait!==NULL){
$this->set_timeout($rec_timeout);
}
if(
$res!==false&&
$flap->channel==4&&
!$flap->obj->error
){
$this->close($this->sck);
if($this->cookie!=NULL&&$this->server!=NULL)$this->_connect();
}
return $res;
}
PHP:
object(icq_flap)#4 (6) { ["id"]=> int(42) ["channel"]=> int(2) ["sequence"]=> int(42894) ["length"]=> int(14) ["data"]=> string(14) "????–Mì§???" ["obj"]=> object(icq_snac)#2 (6) { ["family"]=> int(11) ["command"]=> int(2) ["flags"]=> int(0) ["reference"]=> int(38477) ["data"]=> string(4) "???" ["obj"]=> object(icq_unknown)#7 (0) { } } }
wie komm ich jetzt dadran was ich zugeschickt bekommen hab, wird wahrscheinlich "data" sein aber ihr seh ja selber was raus kommt
Zuletzt bearbeitet: