一度にすべてを選択して、列で並べ替えることはできませんか?
SELECT * FROM your_table ORDER BY column_name ASC
次に、行がある場合はループし、最初の文字を比較して、現在の文字を判断できます。
$stmt->execute();
if ($stmt->rowCount()) {
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
$value = $row['column_name'];
$first_letter = $value[0];
}
}
最初の文字を取得したら、その値で好きなことを行うことができます
この回答を拡張するには、次のようなものを使用して、ヘッダーで値をエコーアウトできます。
// initialize this variable
$current_letter = '';
// if you get results
if ($stmt->rowCount()) {
// loop through each row
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
// when you loop, get the value
$value = $row['column_name'];
// if the value does not have the current letter you are on:
if ($current_letter != $value[0]) {
// echo a header for the new letter
echo "<h2>" . $value[0] . "</h2>";
// set the new letter to the current letter
$current_letter = $value[0];
// echo the actual value
echo $value . "<br />";
} else {
// the value falls under our current letter, echo it
echo $value . "<br />";
}
}
}