You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
--TEST--
|
|
Test pi() - basic function test pi()
|
|
--INI--
|
|
precision=17
|
|
--FILE--
|
|
<?php
|
|
echo pi(), "\n";
|
|
echo M_PI, "\n";
|
|
// N.B pi() ignores all specified arguments no error
|
|
// messages are produced if arguments are spcified.
|
|
?>
|
|
--EXPECT--
|
|
3.1415926535897931
|
|
3.1415926535897931
|
|
|