Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
PHP: pi - Manual
[go: Go Back, main page]

PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net

search for in the

pow" width="11" height="7"/> <octdec
Last updated: Wed, 01 Nov 2006
view this page in

pi

(PHP 3, PHP 4, PHP 5)

pi -- 円周率の値を得る

説明

float pi ( void )

円周率の近似値を返します。返される float 値の小数点以下の 桁数は、php.iniprecision ディレクティブに依存します。デフォルトは 14 です。 また、定数 M_PI を使用することで pi() とまったく同じ結果を取得することも可能です。

例 1. pi() の例

<?php
echo pi(); // 3.1415926535898
echo M_PI; // 3.1415926535898
?>



add a note add a note User Contributed Notes
pi
Keamos at gmail
14-Jan-2006 02:31
For anyone wondering, the highest precision you can get for pi() or M_PI is 20 places after the decimal point, or 3.14159265358979323846.
davidduke at hotmail dot com
28-Mar-2004 11:18
Pi is often usefull in con/sin/tan functions..
There are also other Pi related constants.
These are most of them:

M_PI  = 3.14159265358979323846 // pi

// The following were added in PHP 4.0.0
M_PI_2 = 1.57079632679489661923 // pi/2
M_PI_4 = 0.78539816339744830962 // pi/4
M_1_PI = 0.31830988618379067154 // 1/pi
M_2_PI = 0.63661977236758134308 // 2/pi
M_SQRTPI = 1.77245385090551602729 // sqrt(pi) (Only in PHP 4.0.2+)
M_2_SQRTPI = 1.12837916709551257390 // 2/sqrt(pi)

pow" width="11" height="7"/> <octdec
Last updated: Wed, 01 Nov 2006
 
 
show source | credits | sitemap | contact | advertising | mirror sites