Mehrere Variablen zu einer fassen!

Noki99

Mitglied
Hallo, hab folgenden Code:

PHP:
<?php
$zufall1 = rand(1000,9999);
echo $zufall1;
echo "-";
$zufall2 = rand(1000,9999);
echo $zufall2;
echo "-";
$zufall3 = rand(1000,9999);
echo $zufall3;
echo "-";
$zufall4 = rand(1000,9999);
echo $zufall4;
?>
Da kommt zum Beispiel 2301-4510-4082-6305 raus. Wie bekomme ich das alls in eine Variable? Mit den Bindestrichen****?
 
Habs jetzt so gemacht:

PHP:
<?php
$minus = "-";
$zufall1 = rand(1000,9999);
$zufall2 = rand(1000,9999);
$zufall3 = rand(1000,9999);
$zufall4 = rand(1000,9999);
$alles = $zufall1.$minus.$zufall2.$minus.$zufall3.$minus.$zufall4;
echo "$alles";
 
Zurück