mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
11 lines
172 B
PHP
11 lines
172 B
PHP
<?php
|
|
echo sqrt(4) . '<br />'; // 2
|
|
|
|
$result = sqrt(4);
|
|
echo "$result<br />"; // 2
|
|
|
|
$x = 3;
|
|
$y = 5;
|
|
$distance = sqrt($x * $x + $y * $y);
|
|
echo $distance; // 5.8309518948453
|