Erstmal Danke für die Antworten,
da mein Projekt aber schon besteht und ich nicht meine gesamte Website umstellen möchte habe ich weiter rumprobiert.
Folgendes ist dabei rausgekommen:
<?PHP
$spracheneu = basename($_SERVER["PHP_SELF"],".php");
$array = explode('_dt', $spracheneu);
?>
<a href="<?php for($x = 0; $x < count($array); $x++){ echo $array[$x]; } ?>_en.php">english
Das script funktioniert.
Aber, WARUM?
Warum muß ich das array echo so programmieren? Kann ich das auch abkürzen?
Gruß,
Karsten