为什么 strptime 少了 4 个小时?

发布于 2024-12-25 01:13:44 字数 892 浏览 0 评论 0原文

如何使用 strptime 将 "%Y-%m-%dT%H:%M:%SZ" 格式化为正确的 UNIX 时间戳?

我尝试编写一个名为 testDateWithString 的方法(如下)。

但是,它失败并显示错误消息:

'2011-12-27 08:35:46 +0000' 应该等于 '2011-12-27 04:35:46 +0000'

我该如何解决这个问题吗?

#import <SenTestingKit/SenTestingKit.h>

@implementation NSDate (DateWithString)

+ (id)dateWithString:(NSString *)string {
    struct tm time; strptime([string UTF8String], "%Y-%m-%dT%H:%M:%SZ", &time);
    return [NSDate dateWithTimeIntervalSince1970:mktime(&time)];
}

@end

@interface NSDateTests : SenTestCase
@end

@implementation NSDateTests

- (void)testDateWithString {
    NSDate *parsedDate = [NSDate dateWithString:@"2011-12-27T04:35:46Z"];
    NSDate *actualDate = [NSDate dateWithTimeIntervalSince1970:1324960546];
    STAssertEqualObjects(parsedDate, actualDate, nil);
}

@end

How do I use strptime to format "%Y-%m-%dT%H:%M:%SZ" into the correct UNIX timestamp?

I tried writing a method called testDateWithString (below).

But, it fails with error message:

'2011-12-27 08:35:46 +0000' should be equal to '2011-12-27 04:35:46 +0000'

How can I fix this?

#import <SenTestingKit/SenTestingKit.h>

@implementation NSDate (DateWithString)

+ (id)dateWithString:(NSString *)string {
    struct tm time; strptime([string UTF8String], "%Y-%m-%dT%H:%M:%SZ", &time);
    return [NSDate dateWithTimeIntervalSince1970:mktime(&time)];
}

@end

@interface NSDateTests : SenTestCase
@end

@implementation NSDateTests

- (void)testDateWithString {
    NSDate *parsedDate = [NSDate dateWithString:@"2011-12-27T04:35:46Z"];
    NSDate *actualDate = [NSDate dateWithTimeIntervalSince1970:1324960546];
    STAssertEqualObjects(parsedDate, actualDate, nil);
}

@end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

相思碎 2025-01-01 01:13:44

mktime 为您提供当地时间,而不是 GMT。

查看此答案以了解更多详细信息:在当地时间之间转换和 C/C++ 中的 GMT/UTC

mktime is giving you local time, not GMT.

Take a look at this answer for more details: Converting Between Local Times and GMT/UTC in C/C++

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文