凶狠烤鸡

文章
3
资源
0
加入时间
3年0月9天

C语言实现字符转unix时间戳

原文:http://blog.vip7758.com/408.html在PHP中把字符串转成Unix时间戳是多么的方便,一个strtotime()函数就搞定了。而C语言实现就麻烦很多了,需要先转成tm类型,再得到它的Unix时间戳。附上实现代码: #include <stdio.h>#include <time.h>int strtotime(cha...