当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > pi() 函数
The pi() function returns the value of PI.
pi()函数的作用是:返回PI的值。
pi() |
Tip: The named constant M_PI, yields identical results to pi().
提示:常量M_PI和pi()函数返回的结果相同。
<?php echo pi(); ?> |
The output of the code above will be:
上述代码将输出下面的结果:
3.14159265359 |