php关于运行时间的问题

php关于运行时间的问题,第1张

microtime()函数返回当前 Unix 时间戳和微秒数。

比如 echo(microtime()); 会返回类似于这样的数值:025139300 1138197510

这个数值,不是中间有一个空格吗?

然后,explode是将字符串按照设定的分隔符打散成数组

你这里是用空格打散成数组,那么,这个数据就有了2个元素

list() 函数用数组中的元素为一组变量赋值,你这里是把数组的两个元素赋值给了变量 $msec 和 $sec

最后,把这个两个变量相加并将相加的值返回给函数方法

其中,float是将变量转变为浮点型数字

就这么简单啊

不需要转换啊,你输出的时候控制一下就OK了

#include<iostream>

#include<timeh>

#include<windowsh>

using namespace std;

int getSystemTime()

{

time_t timer;

time(&timer);

tm t_tm = localtime(&timer);

cout<<"NOW IS : "<<t_tm->tm_year+1900<<"/"<<t_tm->tm_mon+1<<"/"<<t_tm->tm_mday<<" "<<t_tm->tm_hour<<":"<<t_tm->tm_min<<":"<<t_tm->tm_sec<<endl;

return 0;

}

int main()

{

getSystemTime();

return 0;

}

用cstlib函数time,比如

#include <iostream>

#include <cstlib>

using namespace std;

int main()

{

int t, h, m, s;

t = time( 0 );

t = t % 86400;

s = t % 60;

t = ( t - s ) / 60;

m = t % 60;

t = ( t - m ) / 60;

h = t;

cout << "现在是" << h << ":" << m << ":" << s << endl;

return 0;

}

即可显示

#include <timeh>

#include <stdioh>

int main( void )

{

time_t t = time(0);

char tmp[64];

strftime( tmp, sizeof(tmp), "%Y/%m/%d %X %A 本年第%j天 %z",localtime(&t) );

puts( tmp );

return 0;

}

size_t strftime(char strDest, size_t maxsize, const char format, const struct tm timeptr);

根据格式字符串生成字符串。

struct tm localtime(const time_t timer);

取得当地时间,localtime获取的结果由结构tm返回

返回的字符串可以依下列的格式而定:

%a 星期几的缩写。Eg:Tue

%A 星期几的全名。 Eg: Tuesday

%b 月份名称的缩写。

%B 月份名称的全名。

%c 本地端日期时间较佳表示字符串。

%d 用数字表示本月的第几天 (范围为 00 至 31)。日期

%H 用 24 小时制数字表示小时数 (范围为 00 至 23)。

%I 用 12 小时制数字表示小时数 (范围为 01 至 12)。

%j 以数字表示当年度的第几天 (范围为 001 至 366)。

%m 月份的数字 (范围由 1 至 12)。

%M 分钟。

%p 以 ''AM'' 或 ''PM'' 表示本地端时间。

%S 秒数。

%U 数字表示为本年度的第几周,第一个星期由第一个周日开始。

%W 数字表示为本年度的第几周,第一个星期由第一个周一开始。

%w 用数字表示本周的第几天 ( 0 为周日)。

%x 不含时间的日期表示法。

%X 不含日期的时间表示法。 Eg: 15:26:30

%y 二位数字表示年份 (范围由 00 至 99)。

%Y 完整的年份数字表示,即四位数。 Eg:2008

%Z(%z) 时区或名称缩写。Eg:中国标准时间

%% % 字符。

每隔5秒用 Sleep(5000)表示就行了

源程序代码以及算法解释如下:

产生1-10随机数程序:

#include <iostream>

#include <timeh>

using namespace std;

int main()

{

const int n = 10;//定义随机数个数

int number[n] = { NULL };//定义随机数存储的数组

srand((unsigned)time(NULL));//初始化随机函数

number[0] = rand() % n;//第一个随机数无需比较

cout << number[0] << " ";

for (int i = 1; i < n; i++)//其余随机数循环产生

{

int j = 0;

number[i] = rand() % n;//产生随机数

while (1)

{

if (number[i] == number[j])//若有相同则继续循环重新安排随机数

{

number[i] = rand() % n;//产生随机数

j = 0;//若遇到相同的就从头遍历

continue;

}

if (j == (i - 1))//若遍历完就跳出

break;

j++;

}

cout << number[i] << " ";

}

cout << endl;

return 0;

}

程序运行结果如下:

扩展资料:

利用vector进行随机数输出:

#include <iostream>

#include <vector>

#include <timeh>

using namespace std;

int main()

{

const int n = 10;

int randnum;

vector<int> number;

for (int i = 0; i < n; i++)

{

numberpush_back(i + 1);    //从尾部添加元素

cout << number[i] << " ";

}

cout << endl;

srand((unsigned)time(NULL));

for (int j = 0; j < n; j++)     //其余随机数循环产生

{

randnum = rand() % (n - j);    //rand函数生成的随机数是0-(n-1)

cout << numberat(randnum) << " ";

numbererase(numberbegin() + randnum);

}

cout << endl;

return 0;

}

以上就是关于php关于运行时间的问题全部的内容,包括:php关于运行时间的问题、C++中获取当前系统时间得到的是秒数,请问是否存在函数能够直接将其转换成对应的年月日(最好库函数)、linux c++ 如何获取 系统时间等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9647939.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-30
下一篇 2023-04-30

发表评论

登录后才能评论

评论列表(0条)

保存