Hallo miteinander
Ich habe hier unten folgende Funktion:
PHP-Code:
function Statistics(&$messages,&$size)
{
if($this->state!="TRANSACTION")
return($this->SetError("connection is not in TRANSACTION state"));
if($this->PutLine("STAT")==0)
return($this->SetError("Could not send the STAT command"));
$response=$this->GetLine();
if(GetType($response)!="string")
return($this->SetError("Could not get the statistics command response"));
if($this->Tokenize($response," ")!="+OK")
return($this->SetError("Could not get the statistics: ".$this->Tokenize("\r\n")));
$messages=$this->Tokenize(" ");
$size=$this->Tokenize(" ");
return("");
}
Was ich nun gerne wissen möchte, ist, wofür das
"&" vor den Variable
message und
size steht.
Kann mir das einer kurz erklären oder einen Link Posten?
Ist relativ schwer, dannach zu googlen wenn man nicht weiss, wie man dieses Zeichen in PHP benennt. :-)
Vielen Dank im Voraus.
Gruss
Martin