如何按字母顺序安排这个安排帮助我请提前谢谢
parse()
我在php中的新手
答案 0 :(得分:1)
嗯,根据我的理解,您希望$db = new \PDO('mysql:host=localhost;dbname=test;charset=utf8', 'username', 'password');
$stmt = $db->prepare('
SELECT *
FROM `book` AS b
WHERE b.genre = ?
');
$stmt->execute(array('fantasy')); // Will replace the ? with 'fantasy' and escape it
按字母顺序排列所有数据,但只有按字母顺序获取记录时才有可能。
例如::
div
这将根据用户的名字按字母升序获取所有用户。