01/10/2018, 16:13

Sắp xếp trong php

Chào mọi người
Cho mình hỏi vấn đề này trong php
Mình muốn có hai câu hỏi hi vọng được giải đáp

  1. khi sắp xếp theo tên phải làm thế nào?
  2. khi sắp xếp theo ngày tháng năm sinh phải làm thế nào?
    Dữ liệu này được lấy ra từ trong database và không được dùng order by để sắp xếp

đ

Array
(
[0] => Array
    (
        [id] => 1
        [nameStudent] => Trần Thi C
        [birthDate] => 1995-01-07
        [emailStudent] => nguyenvana@gmail.com
        [phoneNumber] => 0123456789
        [pictureProfile] => ha.png
        [name] => C
    )

[1] => Array
    (
        [id] => 2
        [nameStudent] => Nguyễn Văn B
        [birthDate] => 1996-06-04
        [emailStudent] => nguyenvanb@gmail.com
        [phoneNumber] => 0123654789
        [pictureProfile] => ha.png
        [name] => B
    )

[2] => Array
    (
        [id] => 4
        [nameStudent] => Trần Thị A
        [birthDate] => 1995-06-06
        [emailStudent] => nguyenvanc@gmail.com
        [phoneNumber] => 0123963852
        [pictureProfile] => B612_20180603_175156_011.jpg
        [name] => A
    )

[3] => Array
    (
        [id] => 5
        [nameStudent] => Nguyễn Văn D
        [birthDate] => 1995-06-19
        [emailStudent] => nguyenvand@gmail.com
        [phoneNumber] => 0123587456
        [pictureProfile] => images1675493_google_chrome_logo_930x488.png
        [name] => D
    )
)
*grab popcorn* viết 18:16 ngày 01/10/2018

Google về :3
Ngắn gọn là dùng usort

stackoverflow.com
Alex

Sort array of objects by object fields

php, arrays, sorting, object
asked by Alex on 03:50AM - 26 Nov 10

Chẵn viết 18:22 ngày 01/10/2018

Cám ơn bác để em thử

Bài liên quan
0