วันอันรวดเร็วระหว่างสอง NSDates


114

ฉันสงสัยว่ามีความเป็นไปได้ใหม่และยอดเยี่ยมที่จะได้รับจำนวนวันระหว่าง NSDates สองตัวใน Swift / โกโก้ "ใหม่" หรือไม่?

เช่นใน Ruby ฉันจะทำ:

(end_date - start_date).to_i

5
ฉันคิดว่าคุณยังต้องใช้ NSCalendar และ NSDateComponents (ซึ่งต้องมีคำตอบหลายร้อยคำใน SO) - หากคุณกำลังมองหาสิ่งที่"ใหม่และเป็นไปได้ที่ยอดเยี่ยม"การแสดงโซลูชันปัจจุบันของคุณเพื่อเปรียบเทียบจะเป็นประโยชน์
Martin R

1
ตอนนี้ทำได้ง่ายมากและคุณไม่ต้องใช้ "NS" อะไรเลย ฉันพิมพ์คำตอบสำหรับปี 2017 เพื่อคัดลอกและวาง
Fattie

คำตอบ:


249

คุณต้องคำนึงถึงความแตกต่างของเวลาด้วย ตัวอย่างเช่นหากคุณเปรียบเทียบวันที่2015-01-01 10:00และ2015-01-02 09:00วันระหว่างวันเหล่านั้นจะกลับมาเป็น 0 (ศูนย์) เนื่องจากความแตกต่างระหว่างวันที่เหล่านั้นน้อยกว่า 24 ชั่วโมง (คือ 23 ชั่วโมง)

หากจุดประสงค์ของคุณคือการได้รับหมายเลขวันที่แน่นอนระหว่างวันที่สองวันคุณสามารถแก้ไขปัญหานี้ได้ดังนี้:

// Assuming that firstDate and secondDate are defined
// ...

let calendar = NSCalendar.currentCalendar()

// Replace the hour (time) of both dates with 00:00
let date1 = calendar.startOfDayForDate(firstDate)
let date2 = calendar.startOfDayForDate(secondDate)

let flags = NSCalendarUnit.Day
let components = calendar.components(flags, fromDate: date1, toDate: date2, options: [])

components.day  // This will return the number of day(s) between dates

เวอร์ชัน Swift 3 และ Swift 4

let calendar = Calendar.current

// Replace the hour (time) of both dates with 00:00
let date1 = calendar.startOfDay(for: firstDate)
let date2 = calendar.startOfDay(for: secondDate)

let components = calendar.dateComponents([.day], from: date1, to: date2)

14
คุณอาจต้องการตรวจสอบเวลา 12.00 น. (เที่ยงวัน) แทน startOfDayForDate - น่าจะมีโอกาสน้อยที่จะได้รับผลกระทบเนื่องจากการปรับเขตเวลาและ DST
brandonscript

11
การตั้งค่าวันที่เป็นเที่ยงสามารถทำได้ดังนี้calendar.date(bySettingHour: 12, minute: 00, second: 00, of: calendar.startOfDay(for: firstDate))
MonsieurDart

รุ่นสั้นสำหรับการตั้งค่าเที่ยง ( น่าจะเป็นที่ไม่จำเป็น):startOfDay() calendar.date(bySettingHour: 12, minute: 0, second: 0, of: firstDate)
jamix

52

นี่คือคำตอบของฉันสำหรับ Swift 2:

func daysBetweenDates(startDate: NSDate, endDate: NSDate) -> Int
{
    let calendar = NSCalendar.currentCalendar()

    let components = calendar.components([.Day], fromDate: startDate, toDate: endDate, options: [])

    return components.day
}

ฉันใช้สิ่งนี้สำเร็จกับส่วนประกอบของโพสต์ @vikingosegundo ด้านบน จะส่งคืนจำนวนเต็มแทนจำนวนวันที่ถูกต้องระหว่างวันที่สองวัน <ชอบ>
ลบบัญชีของฉัน

ฉันชอบ แต่ชื่อฟังก์ชันควรเป็น "daysBetweenDates"
mbonness

4
สิ่งนี้จะคืนค่า 0 หากเรากำลังเปรียบเทียบ todayและtomorrow
เตาฮีด

40

ฉันเห็นคำตอบของ Swift3 สองสามคำดังนั้นฉันจะเพิ่มของฉันเอง:

public static func daysBetween(start: Date, end: Date) -> Int {
   Calendar.current.dateComponents([.day], from: start, to: end).day!
}

การตั้งชื่อให้ความรู้สึก Swifty มากขึ้นเป็นบรรทัดเดียวและใช้dateComponents()วิธีการล่าสุด


29

ที่นี่ดีมากDateส่วนขยายเพื่อให้ได้ความแตกต่างระหว่างวันที่ในปีเดือนวันชั่วโมงนาทีวินาที

extension Date {

    func years(sinceDate: Date) -> Int? {
        return Calendar.current.dateComponents([.year], from: sinceDate, to: self).year
    }

    func months(sinceDate: Date) -> Int? {
        return Calendar.current.dateComponents([.month], from: sinceDate, to: self).month
    }

    func days(sinceDate: Date) -> Int? {
        return Calendar.current.dateComponents([.day], from: sinceDate, to: self).day
    }

    func hours(sinceDate: Date) -> Int? {
        return Calendar.current.dateComponents([.hour], from: sinceDate, to: self).hour
    }

    func minutes(sinceDate: Date) -> Int? {
        return Calendar.current.dateComponents([.minute], from: sinceDate, to: self).minute
    }

    func seconds(sinceDate: Date) -> Int? {
        return Calendar.current.dateComponents([.second], from: sinceDate, to: self).second
    }

}

1
dateควรอยู่sinceDateในพารามิเตอร์ฟังก์ชัน
TheTiger

@TheTiger - ขอบคุณมากสำหรับการเน้นข้อผิดพลาดที่ใหญ่ที่สุดของคำตอบนี้ .. ฉันจะทดสอบและอัปเดตคำตอบในไม่ช้า
Krunal

1
ด้วยความยินดี! ฉันได้ทดสอบแล้วdaysและใช้งานได้ดี
TheTiger

2
คำตอบที่ดี. ฉันเพียง แต่แนะนำและคุณจะเรียกมันว่าเป็นfunc years(since date: Date) -> Int? { return Calendar.current.dateComponents[.year], from: date, to: self).years } let y = date1.years(since: date2)ซึ่งอาจสอดคล้องกับรูปแบบการตั้งชื่อสมัยใหม่มากกว่า
Rob

28

ฉันแปลคำตอบ Objective-Cของฉัน

let start = "2010-09-01"
let end = "2010-09-05"

let dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd"

let startDate:NSDate = dateFormatter.dateFromString(start)
let endDate:NSDate = dateFormatter.dateFromString(end)

let cal = NSCalendar.currentCalendar()


let unit:NSCalendarUnit = .Day

let components = cal.components(unit, fromDate: startDate, toDate: endDate, options: nil)


println(components)

ผลลัพธ์

<NSDateComponents: 0x10280a8a0>
     Day: 4

ส่วนที่ยากที่สุดคือการเติมข้อความอัตโนมัติยืนยันจากวันที่และNSDate?ถึงวันที่ แต่ต้องเป็นไปNSDate!ตามที่แสดงในข้อมูลอ้างอิง

ฉันไม่เห็นว่าโซลูชันที่ดีสำหรับตัวดำเนินการจะเป็นอย่างไรเนื่องจากคุณต้องการระบุหน่วยที่แตกต่างกันในแต่ละกรณี คุณสามารถคืนช่วงเวลาได้ แต่คุณจะไม่ได้กำไรมาก


ดูเหมือน.DayCalendarUnitเลิกใช้งานแล้ว ฉันเชื่อว่าตอนนี้คุณควรใช้.CalendarUnitDayแทน
TaylorAllred

2
ขณะนี้ตัวเลือกเป็นพารามิเตอร์ที่คาดหวัง
B

2
ใช้ Swift 2 สิ่งนี้ใช้ได้กับฉัน:let components = cal.components(.Day, fromDate: startDate, toDate: endDate, options: [])
Andrej

@TaylorAllred .Dayตอนนี้
William GP

18

อัปเดตสำหรับ Swift 3 iOS 10 Beta 4

func daysBetweenDates(startDate: Date, endDate: Date) -> Int {
    let calendar = Calendar.current
    let components = calendar.dateComponents([Calendar.Component.day], from: startDate, to: endDate)
    return components.day!
}

10

นี่คือคำตอบสำหรับ Swift 3 (ทดสอบสำหรับ IOS 10 Beta)

func daysBetweenDates(startDate: Date, endDate: Date) -> Int
{
    let calendar = Calendar.current
    let components = calendar.components([.day], from: startDate, to: endDate, options: [])
    return components.day!
}

แล้วจะเรียกแบบนี้ก็ได้

let pickedDate: Date = sender.date
let NumOfDays: Int = daysBetweenDates(startDate: pickedDate, endDate: Date())
    print("Num of Days: \(NumOfDays)")

7

Swift 3 ขอบคุณEmin Buğra Saralด้านบนสำหรับstartOfDayคำแนะนำ

extension Date {

    func daysBetween(date: Date) -> Int {
        return Date.daysBetween(start: self, end: date)
    }

    static func daysBetween(start: Date, end: Date) -> Int {
        let calendar = Calendar.current

        // Replace the hour (time) of both dates with 00:00
        let date1 = calendar.startOfDay(for: start)
        let date2 = calendar.startOfDay(for: end)

        let a = calendar.dateComponents([.day], from: date1, to: date2)
        return a.value(for: .day)!
    }
}

การใช้งาน:

let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd"
let start = dateFormatter.date(from: "2017-01-01")!
let end = dateFormatter.date(from: "2018-01-01")!

let diff = Date.daysBetween(start: start, end: end) // 365

1
แน่นอนว่าจะดีกว่าถ้าย้ายทั้งคู่ไปเที่ยงแทนที่จะเป็น 00:00เพื่อหลีกเลี่ยงปัญหามากมาย
Fattie

3

สิ่งที่สร้างขึ้นอย่างรวดเร็วยังคงเป็นพื้นฐานอยู่มาก ตามที่ควรจะเป็นในช่วงแรกนี้. แต่คุณสามารถเพิ่มสิ่งของของคุณเองได้ด้วยความเสี่ยงที่มาพร้อมกับตัวดำเนินการที่ทำงานหนักเกินไปและฟังก์ชันโดเมนทั่วโลก พวกเขาจะอยู่ในโมดูลของคุณแม้ว่า

let now = NSDate()
let seventies = NSDate(timeIntervalSince1970: 0)

// Standard solution still works
let days = NSCalendar.currentCalendar().components(.CalendarUnitDay, 
           fromDate: seventies, toDate: now, options: nil).day

// Flashy swift... maybe...
func -(lhs:NSDate, rhs:NSDate) -> DateRange {
    return DateRange(startDate: rhs, endDate: lhs)
}

class DateRange {
    let startDate:NSDate
    let endDate:NSDate
    var calendar = NSCalendar.currentCalendar()
    var days: Int {
        return calendar.components(.CalendarUnitDay, 
               fromDate: startDate, toDate: endDate, options: nil).day
    }
    var months: Int {
        return calendar.components(.CalendarUnitMonth, 
               fromDate: startDate, toDate: endDate, options: nil).month
    }
    init(startDate:NSDate, endDate:NSDate) {
        self.startDate = startDate
        self.endDate = endDate
    }
}

// Now you can do this...
(now - seventies).months
(now - seventies).days

19
อย่าใช้ (24 * 60 * 60) เป็นระยะเวลาหนึ่งวัน สิ่งนี้ไม่ได้คำนึงถึงการเปลี่ยนเวลาออมแสง
Martin R

ฉันคิดว่า NSDate จะปรับให้เหมาะกับสิ่งนั้นเนื่องจากมันใช้ GMT เสมอและการออมแสงเป็นเพียงการจัดรูปแบบหรือการแปลตามนั้น แน่นอนว่ามันจะยากขึ้นสำหรับเดือนปีหรืออะไรก็ตามที่มีความยาวผันแปรจริงๆ
Daniel Schlaug

1
@MartinR ฉันต้องลองถึงจะเชื่อ แต่ตอนนี้ฉันได้เห็นแล้วว่าวิกิพีเดียพูดถึงเรื่องนี้ คุณถูก. ขอบคุณที่ดื้อกับฉัน
Daniel Schlaug

1
ที่นั่นแก้ไขให้ถูกต้อง แต่ความวาบหวิวก็หายไป
Daniel Schlaug

1
กำหนดโดยสถานที่จุดเวลาและระบบปฏิทิน ปฏิทินฮีบรูมีเดือนอธิกสุรทิน มีวิดีโอ wwdc ที่ยอดเยี่ยม: การคำนวณปฏิทิน - สิ่งที่ต้องดูสำหรับผู้เข้ารหัสโกโก้ทุกคน
vikingosegundo

3

นี่คือคำตอบของฉันสำหรับ Swift 3:

func daysBetweenDates(startDate: NSDate, endDate: NSDate, inTimeZone timeZone: TimeZone? = nil) -> Int {
    var calendar = Calendar.current
    if let timeZone = timeZone {
        calendar.timeZone = timeZone
    }
    let dateComponents = calendar.dateComponents([.day], from: startDate.startOfDay, to: endDate.startOfDay)
    return dateComponents.day!
}

2

แทบจะไม่มีไลบรารีมาตรฐานเฉพาะของ Swift เลย เพียงแค่ตัวเลขสตริงและประเภทคอลเลกชันพื้นฐานแบบลีน

เป็นไปได้อย่างสมบูรณ์แบบที่จะกำหนด shorthands ดังกล่าวโดยใช้ส่วนขยาย แต่เท่าที่ API ที่ใช้งานได้จริงจะไม่มีโกโก้ "ใหม่" Swift จะแมปโดยตรงกับ Cocoa APIs verbose แบบเดิมที่มีอยู่แล้ว


2

ฉันจะเพิ่มเวอร์ชันของฉันแม้ว่าเธรดนี้จะเก่าแล้วก็ตาม รหัสของฉันมีลักษณะดังนี้:

    var name = txtName.stringValue // Get the users name

    // Get the date components from the window controls
    var dateComponents = NSDateComponents()
    dateComponents.day = txtDOBDay.integerValue
    dateComponents.month = txtDOBMonth.integerValue
    dateComponents.year = txtDOBYear.integerValue

    // Make a Gregorian calendar
    let calendar = NSCalendar(identifier: NSCalendarIdentifierGregorian)

    // Get the two dates we need
    var birthdate = calendar?.dateFromComponents(dateComponents)
    let currentDate = NSDate()

    var durationDateComponents = calendar?.components(NSCalendarUnit.CalendarUnitDay, fromDate: birthdate!, toDate: currentDate, options: nil)

    let numberOfDaysAlive = durationDateComponents?.day

    println("\(numberOfDaysAlive!)")

    txtGreeting.stringValue = "Hello \(name), You have been alive for \(numberOfDaysAlive!) days."

ฉันหวังว่ามันจะช่วยใครสักคน

ไชโย


2

วิธีการของ Erin ได้รับการอัปเดตเป็น Swift 3 ซึ่งจะแสดงวันนับจากวันนี้ (ไม่คำนึงถึงเวลาของวัน)

func daysBetweenDates( endDate: Date) -> Int 
    let calendar: Calendar = Calendar.current 
    let date1 = calendar.startOfDay(for: Date()) 
    let date2 = calendar.startOfDay(for: secondDate) 
    return calendar.dateComponents([.day], from: date1, to: date2).day! 
}

2

สิ่งนี้ส่งคืนความแตกต่างสัมบูรณ์ในช่วงระหว่างวันบางDateวันถึงวันนี้:

extension Date {
  func daysFromToday() -> Int {
    return abs(Calendar.current.dateComponents([.day], from: self, to: Date()).day!)
  }
}

แล้วใช้มัน:

if someDate.daysFromToday() >= 7 {
  // at least a week from today
}

2

คุณสามารถใช้ส่วนขยายต่อไปนี้:

public extension Date {
    func daysTo(_ date: Date) -> Int? {
        let calendar = Calendar.current

        // Replace the hour (time) of both dates with 00:00
        let date1 = calendar.startOfDay(for: self)
        let date2 = calendar.startOfDay(for: date)

        let components = calendar.dateComponents([.day], from: date1, to: date2)
        return components.day  // This will return the number of day(s) between dates
    }
}

จากนั้นเรียกแบบนี้ว่า

startDate.daysTo(endDate)

1

สวิฟต์ 3.2

extension DateComponentsFormatter {
    func difference(from fromDate: Date, to toDate: Date) -> String? {
        self.allowedUnits = [.year,.month,.weekOfMonth,.day]
        self.maximumUnitCount = 1
        self.unitsStyle = .full
        return self.string(from: fromDate, to: toDate)
    }
}

1

คำตอบทั้งหมดเป็นสิ่งที่ดี แต่สำหรับการแปลภาษาเราจำเป็นต้องคำนวณจำนวนวันทศนิยมระหว่างวันที่สองวัน เพื่อให้เราสามารถระบุรูปแบบทศนิยมที่ยั่งยืนได้

// This method returns the fractional number of days between to dates
func getFractionalDaysBetweenDates(date1: Date, date2: Date) -> Double {

    let components = Calendar.current.dateComponents([.day, .hour], from: date1, to: date2)

    var decimalDays = Double(components.day!)
    decimalDays += Double(components.hour!) / 24.0

    return decimalDays
}

1
extension Date {
    func daysFromToday() -> Int {
        return Calendar.current.dateComponents([.day], from: self, to: Date()).day!
    }
}

แล้วใช้มันเช่น

    func dayCount(dateString: String) -> String{
        let dateFormatter = DateFormatter()
        dateFormatter.dateFormat = "MMM dd,yyyy hh:mm a"
        let fetchedDate = dateFormatter.date(from: dateString)


        let day = fetchedDate?.daysFromToday()
        if day! > -1{
            return "\(day!) days passed."
        }else{
        return "\(day! * -1) days left."
        }
    }

1

นี่คือคำตอบของ Emin เวอร์ชันปรับปรุงสำหรับ Swift 5 ที่รวมคำแนะนำให้ใช้เวลาเที่ยงแทนที่จะเป็นเที่ยงคืนเป็นเวลาที่แน่นอนสำหรับการเปรียบเทียบวัน นอกจากนี้ยังจัดการความล้มเหลวที่อาจเกิดขึ้นของฟังก์ชันวันที่ต่างๆด้วยการส่งคืนตัวเลือก

    ///
    /// This is an approximation; it does not account for time differences. It will set the time to 1200 (noon) and provide the absolute number
    /// of days between now and the given date. If the result is negative, it should be read as "days ago" instead of "days from today."
    /// Returns nil if something goes wrong initializing or adjusting dates.
    ///

    func daysFromToday() -> Int?
    {
        let calendar = NSCalendar.current

        // Replace the hour (time) of both dates with noon. (Noon is less likely to be affected by DST changes, timezones, etc. than midnight.)
        guard let date1 = calendar.date(bySettingHour: 12, minute: 00, second: 00, of: calendar.startOfDay(for: Date())),
              let date2 = calendar.date(bySettingHour: 12, minute: 00, second: 00, of: calendar.startOfDay(for: self)) else
        {
            return nil
        }

        return calendar.dateComponents([.day], from: date1, to: date2).day
    }

คุณควรใช้ Swift native Calendar (วาง NS) การใช้ยามเมื่อตั้งค่าชั่วโมงเป็น 12.00 น. ไม่มีจุดหมาย มันจะไม่มีวันล้มเหลว
Leo Dabus

การโทร startOfDay ก่อนตั้งชั่วโมงถึงเที่ยงมันก็ไร้จุดหมายเช่นกัน
Leo Dabus

0

Swift 3 - วันตั้งแต่วันนี้จนถึงวันที่

func daysUntilDate(endDateComponents: DateComponents) -> Int
    {
        let cal = Calendar.current
        var components = cal.dateComponents([.era, .year, .month, .day], from: NSDate() as Date)
        let today = cal.date(from: components)
        let otherDate = cal.date(from: endDateComponents)

        components = cal.dateComponents([Calendar.Component.day], from: (today! as Date), to: otherDate!)
        return components.day!
    }

ฟังก์ชั่นการโทรเช่นนี้

// Days from today until date
   var examnDate = DateComponents()
   examnDate.year = 2016
   examnDate.month = 12
   examnDate.day = 15
   let daysCount = daysUntilDate(endDateComponents: examnDate)

0

ตัวเลือกที่ง่ายกว่าคือการสร้างส่วนขยายในวันที่

public extension Date {

        public var currentCalendar: Calendar {
            return Calendar.autoupdatingCurrent
        }

        public func daysBetween(_ date: Date) -> Int {
            let components = currentCalendar.dateComponents([.day], from: self, to: date)
            return components.day!
        }
    }

0
  func completeOffset(from date:Date) -> String? {

    let formatter = DateComponentsFormatter()
    formatter.unitsStyle = .brief

    return  formatter.string(from: Calendar.current.dateComponents([.year,.month,.day,.hour,.minute,.second], from: date, to: self))




}

หากคุณต้องการวันเดือนปีและชั่วโมงเป็นสตริงให้ใช้สิ่งนี้

var tomorrow = Calendar.current.date (โดยการเพิ่ม: .day ค่า: 1 ถึง: Date ())!

ให้ dc = tomorrow.completeOffset (from: Date ())


0

หนึ่งซับที่มีประโยชน์:

extension Date {
  var daysFromNow: Int {
    return Calendar.current.dateComponents([.day], from: Date(), to: self).day!
  }
}

0

สวิฟต์ 4

 func getDateHeader(indexPath: Int) -> String {
    let formatter2 = DateFormatter()
    formatter2.dateFormat = "MM-dd-yyyy"
    var dateDeadline : Date?

    dateDeadline = formatter2.date(from: arrCompletedDate[indexPath] as! String)

    let currentTime = dateDeadline?.unixTimestamp
    let calendar = NSCalendar.current

    let date = NSDate(timeIntervalSince1970: Double(currentTime!))
    if calendar.isDateInYesterday(date as Date) { return "Yesterday" }
    else if calendar.isDateInToday(date as Date) { return "Today" }
    else if calendar.isDateInTomorrow(date as Date) { return "Tomorrow" }
    else {
        let startOfNow = calendar.startOfDay(for: NSDate() as Date)
        let startOfTimeStamp = calendar.startOfDay(for: date as Date)
        let components = calendar.dateComponents([.day], from: startOfNow, to: startOfTimeStamp)
        let day = components.day!
        if day < 1 { return "\(abs(day)) days ago" }
        else { return "In \(day) days" }
    }
}

0

โซลูชัน Swift 5.2.4:

import UIKit

let calendar = Calendar.current

let start = "2010-09-01"
let end = "2010-09-05"

let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd"

let firstDate = dateFormatter.date(from: start)!
let secondDate = dateFormatter.date(from: end)!

// Replace the hour (time) of both dates with 00:00
let date1 = calendar.startOfDay(for: firstDate)
let date2 = calendar.startOfDay(for: secondDate)

let components = calendar.dateComponents([Calendar.Component.day], from: date1, to: date2)

components.day  // This will return the number of day(s) between dates

-1

เวอร์ชัน 2017 คัดลอกและวาง

func simpleIndex(ofDate: Date) -> Int {
    
    // index here just means today 0, yesterday -1, tomorrow 1 etc.
    
    let c = Calendar.current
    let todayRightNow = Date()
    
    let d = c.date(bySetting: .hour, value: 13, of: ofDate)
    let t = c.date(bySetting: .hour, value: 13, of: todayRightNow)
    
    if d == nil || today == nil {
    
        print("weird problem simpleIndex#ofDate")
        return 0
    }
    
    let r = c.dateComponents([.day], from: today!, to: d!)
    // yesterday is negative one, tomorrow is one
    
    if let o = r.value(for: .day) {
        
        return o
    }
    else {
    
        print("another weird problem simpleIndex#ofDate")
        return 0
    }
}

-2
let calendar = NSCalendar.currentCalendar();
let component1 = calendar.component(.Day, fromDate: fromDate)
let component2 = calendar.component(.Day, fromDate: toDate)
let difference  = component1 - component2

1
ที่วัดความแตกต่างระหว่างส่วนตัวเลขของวันที่คือ 21 มกราคมถึง 22 กุมภาพันธ์จะให้เวลา 1 วันไม่ใช่ 32 วันเท่าที่ควร
ปีเตอร์จอห์นสัน
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.