Files
php_8/functions/function_echo.php
2022-05-10 22:29:05 +03:00

8 lines
105 B
PHP

<?php
function convertToGrams()
{
$result = 5 * 1_000;
echo $result;
}
convertToGrams(); // 5000