当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP pi()用法及代码示例


pi() 是 PHP 的重要数学函数,用于解决数学问题。它返回 PI 的近似值。

我们可以使用 M_PI 常量作为 pi() 的结果。

用法:

float pi ( void )

例子1

<?php
echo "By using 'pi()' Function the value of PI:".(pi());
?>

输出:

By using 'pi()' Function the value of PI:3.1415926535898

例子2

<?php
echo "By using 'M_PI' constant the value of PI:".M_PI_2;
	?>

输出:

By using 'M_PI' constant the value of PI:1.5707963267949

例子3

<?php
echo "By using 'M_PI_2' constant the value of PI:".M_PI_2; //  pi/2 
echo "<br>"."By using 'M_PI_4' constant the value of PI:".M_PI_4;  //  pi/4
?>

输出:

By using 'M_PI_2' constant the value of PI:1.5707963267949
By using 'M_PI_4' constant the value of PI:0.78539816339745

示例 4

<?php
echo "By using 'M_SQRTPI' constant the value of PI:".M_SQRTPI;   //sqrt(pi)
?>

输出:

By using 'M_SQRTPI' constant the value of PI:1.7724538509055

例 5

<?php
echo "By using 'M_2_SQRTPI' constant the value of PI:".M_2_SQRTPI; // 2/sqrt(pi)
?>

输出:

By using 'M_2_SQRTPI' constant the value of PI:1.1283791670955






相关用法


注:本文由纯净天空筛选整理自 PHP pi() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。