summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/sqrt_basic.phpt
blob: 385b19d7e357c529ead8a5efd924e71228bd5d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--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)