在functions.php里$time = strtotime($time);
- function accesstimetounix($time) {
- if($time > 100000000) {
- return $time;
- }
- if(strtotime($time) !== false && strtotime($time) != -1) {
- $time = strtotime($time);
- } else {
- $time = str_replace(array(' 一月 ',' 二月 ',' 三月 ',' 四月 ',' 五月 ',' 六月 ',' 七月 ',' 八月 ',' 九月 ',' 十月 ',' 十一月 ',' 十二月 ', ' 上午 '), array('-1-','-2-','-3-','-4-','-5-','-6-','-7-','-8-','-9-','-10-','-11-','-12-', ' '), $time);
- if(strrchr($time, '下午') !== false) {
- $time = strtotime(str_replace(' 下午 ', ' ', $time)) + 43200;
- } else {
- $time = strtotime($time);
- }
- }
- return $time;
- }
复制代码 |