Page 1 of 1

【已解决】使用uni_local_time_get接口获取到的月份不对,请问怎么解决

Posted: 2023年 Feb 28日 09:53
by Joy

使用uni_local_time_get接口获取到的月份不对,请问怎么解决


Re: 使用uni_local_time_get接口获取到的月份不对,请问怎么解决

Posted: 2023年 Feb 28日 13:51
by 愚者千虑必有一得

你的代码有问题,修改一下:

Code: Select all

	POSIX_TM_S tm = {0};
	uni_local_time_get(&tm);
	PR_NOTICE("tm->tm_mod:%d", tm.tm_mon);

Re: 使用uni_local_time_get接口获取到的月份不对,请问怎么解决

Posted: 2023年 Feb 28日 14:47
by yangjie
Joy 2023年 Feb 28日 09:53

使用uni_local_time_get接口获取到的月份不对,请问怎么解决

接口入参错误

使用示例如下:

time.png

打印输出如下:

time_log.png