phpbar.de logo

Mailinglisten-Archive

[php] AW: [php] 2 $var returnen / global

[php] AW: [php] 2 $var returnen / global

Gloss Mathias Mathias.Gloss_(at)_start.de
Thu, 1 Feb 2001 18:05:50 +0100


Hiho,

> ----------
> Von: 	Thomas Pons[SMTP:tom_(at)_huno.net]
> 
> wie kann ich aus einer function() 2 $variablen returnen ?
> Irgendwie akzeptiert er immer nur eine.
> 
function return_two() {
  return array(1,2);
}

list($eins, $zwei) = return_two();

echo $eins.'<br>'.$zwei;

> oder noch besser wäre: wie deklarier ich alle $variablen im script als
> global 
> wenn das überhaupt geht ?
> 
Ich glaub nicht auf einen Schlag, aber....

>  ich würde das script halt ganz gerne mit functions() 
> strukturieren.
> 
$name = 'Mathias';

function print_hallo(){
  echo 'Hallo '.$GLOBALS['name'];
}
ODER:
function print_hallo(){
  global $name;
  echo 'Hallo '.$name;
}

Viele Grüße, Mathias



php::bar PHP Wiki   -   Listenarchive