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

8 lines
113 B
PHP

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