Hallo,
wie kann ich ein mehrdimensionales Array Sortieren lassen?
Die Funktion array_multisort will bei mir nicht funktionieren:uhm:
Mein Code:
Zum Test möchte ich da Array nach Straße sortieren lassen. Mein Array ist aber immer noch nach sort unsortiert :'(
Könnt ihr mir sagen was falsch ist?
Danke im voraus
Philipp
wie kann ich ein mehrdimensionales Array Sortieren lassen?
Die Funktion array_multisort will bei mir nicht funktionieren:uhm:
Mein Code:
PHP:
for ($i = 0; $i < $num; $i++) {
$row = $GLOBALS["TYPO3_DB"]->sql_fetch_assoc($res);
$uid = $row["uid"];
$name = $row["name"];
$plz = $row["plz"];
$ort = $row["ort"];
$strasse = $row["strasse"];
$tel = $row["telefon"];
$distanz = "";
if($plz_search == 1) {
$distanz = $this->distance($erdradius, $plz);
}
### array generieren ###
$daten[] = array(
"name" => $this->cObj->typolink($name, $info),
"plz" => $plz,
"strasse" => $strasse,
"ort" => $ort,
"tel" => $tel,
"distanz" => $distanz,
"info" => $this->cObj->typolink("Info", $info)
);
}
print_r($daten);
foreach ($daten as $key => $data) {
$name[$key] = strtolower($data["name"]);
$strasse[$key] = strtolower($data["strasse"]);
$ort[$key] = strtolower($data["ort"]);
$tel[$key] = strtolower($data["tel"]);
$distanz[$key] = strtolower($data["distanz"]);
$info[$key] = strtolower($data["info"]);
$name[$key] = strtolower($data["name"]);
}
array_multisort($strasse, SORT_DESC, $daten);
echo "<p>neu</p>";
print_r($daten);
}
Zum Test möchte ich da Array nach Straße sortieren lassen. Mein Array ist aber immer noch nach sort unsortiert :'(
HTML:
Array ( [0] => Array ( [name] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=23">Zschenderlein, Dr. R.-Peter</a>[plz] => 09111 [strasse] => Bahnhofstr. 6 [ort] => Chemnitz [tel] => 0371/694464 [distanz] => ca. 63,16 km [info] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=23">Info</a>) [1] => Array ( [name] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=243">Storch, Dr. Angela</a>[plz] => 01324 [strasse] => Gnaschwitzer Str. 8 [ort] => Dresden [tel] => 0351/2686919 [distanz] => ca. 0,5 km [info] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=243">Info</a>) [2] => Array ( [name] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=389">Mehmke, Dr. Wolf-Ullrich</a>[plz] => 09120 [strasse] => Anabergerstr. 109 [ort] => Chemnitz [tel] => 0371/586035 [distanz] => ca. 63,16 km [info] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=389">Info</a>) [3] => Array ( [name] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=552">Adam, MUDr. Uwe, MSc. Implantologie</a>[plz] => 15926 [strasse] => Lange Str. 49 [ort] => Luckau [tel] => 03544/2224 [distanz] => ca. 99,3 km [info] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=552">Info</a>) [4] => Array ( [name] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=563">Schulze, Thomas ZA</a>[plz] => 01109 [strasse] => Selliner Str. 46 [ort] => Dresden [tel] => 0351/8806618 [distanz] => ca. 0,5 km [info] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=563">Info</a>) [5] => Array ( [name] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=596">Schubert, Dr. med. dent. Karsten</a>[plz] => 01127 [strasse] => Bürgerstr. 74 [ort] => Dresden [tel] => 0351/8474677 [distanz] => ca. 0,5 km [info] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=596">Info</a>) [6] => Array ( [name] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=641">Pohl, Dr. Dr. A u. Dr. C.</a>[plz] => 09387 [strasse] => Chemnitzer Str. 61 [ort] => Jahnsdorf [tel] => 03721/36005 [distanz] => ca. 71,39 km [info] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=641">Info</a>) [7] => Array ( [name] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=658">Hoch, Dr. Thomas</a>[plz] => 01097 [strasse] => Heinrichstr. 4 [ort] => Dresden [tel] => 0351/2721150 [distanz] => ca. 0,5 km [info] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=658">Info</a>) [8] => Array ( [name] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=667">Gerstenberger, Dr. Thomas</a>[plz] => 09126 [strasse] => Rosa-Luxemburgstr. 1 [ort] => Chemnitz [tel] => 0371/586310 [distanz] => ca. 63,16 km [info] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=667">Info</a>) [9] => Array ( [name] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=692">Mayer, Dr. Wolf-Karsten</a>[plz] => 01723 [strasse] => Am Markt 1 [ort] => Kesselsdorf b. Dresden [tel] => 035204/394575 [distanz] => ca. 14,93 km [info] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=692">Info</a>) [10] => Array ( [name] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=697">Zahnärztliche Gemeinschaftspraxis Maresch und Bochmann</a>[plz] => 01069 [strasse] => Kaitzer Str. 19 [ort] => Dresden [tel] => 0351/4174931 [distanz] => ca. 0,5 km [info] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=697">Info</a>) [11] => Array ( [name] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=701">Haupt, Dr. Elisabeth</a>[plz] => 01847 [strasse] => Basteistr. 19 [ort] => Lohmen [tel] => 03501/588066 [distanz] => ca. 18,64 km [info] => <a href="index.php?id=127&tx_implantateadressen_pi1%5Bitem%5D=701">Info</a>) )
Könnt ihr mir sagen was falsch ist?
Danke im voraus
Philipp