I have a file here which contains list of database names and its corresponding size. Now I want to sort the size from the largest to the lowest, and the database name should go along it upon display.Am using PHP here.. Can anyone help me out?
İşte bunun için basit bir kod:
$file_name = test.txt
$handle = @fopen($file_name, "r");
if ($handle) {
while (!feof($handle)) {
$buffer = fgets($handle, 4096);
$data = explode(" ",$buffer);
echo $data[1]."\n";
}
fclose($handle);
}
Dosya bu gibi görünüyor:
DatabaseName 300 KB
Not: $ veri [1] boyutlarını içerir. I bir dizi yerleştirin gerekir? nasıl db ismi hakkında?
Yanıtlar çok takdir edilmektedir. =)