php-src/ext/standard/tests/math/sqrt_basic.phpt
2020-06-24 13:13:44 +02:00

17 lines
220 B
PHP

--TEST--
Test return type and value for expected input sqrt()
--INI--
precision = 14
--FILE--
<?php
/*
* Function is implemented in ext/standard/math.c
*/
$arg_0 = 9.0;
var_dump(sqrt($arg_0));
?>
--EXPECT--
float(3)