欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

常用时间函数_PHP

程序员文章站 2022-04-25 19:05:36
...



常用时间函数(二)



print("pi=".pi());
print("
");
print("sin(0.5 * pi())=".sin(0.5 * pi()));
print("
");
print("cos(2 * pi())=".cos(2 * pi()));
print("
");

//打印从1到100中间的10个随机的数
for($index = 0; $index {
print(rand(1,100) . "
\n");
}
?>



常用时间函数_PHP