mirror of
https://github.com/php/php-src.git
synced 2025-01-23 04:04:16 +08:00
15 lines
270 B
PHP
15 lines
270 B
PHP
--TEST--
|
|
Test pi() - basic function test pi()
|
|
--INI--
|
|
precision=14
|
|
--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.
|
|
?>
|
|
--EXPECTF--
|
|
3.1415926535898
|
|
3.1415926535898
|