永发信息网

php怎么把20141030133525这样的时间转成2014-10-30 13:35:25

答案:2  悬赏:30  手机版
解决时间 2021-11-28 09:21
  • 提问者网友:留有余香
  • 2021-11-27 12:32
php怎么把20141030133525这样的时间转成2014-10-30 13:35:25
最佳答案
  • 五星知识达人网友:蕴藏春秋
  • 2021-11-27 13:26
网上给你找了一段,测试了一下是可以的.

01
02 class runtime

03 {

04 var $StartTime = 0;

05 var $StopTime = 0;

06

07 function get_microtime()

08 {

09 list($usec, $sec) = explode(' ', microtime());

10 return ((float)$usec + (float)$sec);

11 }

12

13 function start()

14 {

15 $this->StartTime = $this->get_microtime();

16 }

17

18 function stop()

19 {

20 $this->StopTime = $this->get_microtime();

21 }

22

23 function spent()

24 {

25 return round(($this->StopTime - $this->StartTime) * 1000, 1);

26 }

27

28 }

29

30

31 //例子

32 $runtime= new runtime;

33 $runtime->start();

34

35 //你的代码开始

36

37 $a = 0;

38 for($i=0; $i<1000000; $i++)

39 {

40 $a += $i;

41 }

42

43 //你的代码结束

44

45 $runtime->stop();

46 echo "页面执行时间: ".$runtime->spent()." 毫秒";

47 >
全部回答
  • 1楼网友:洎扰庸人
  • 2021-11-27 14:49
" . date("Y-m-d") . ";
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯