mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-07-29 12:52:43 +00:00
8 lines
113 B
PHP
8 lines
113 B
PHP
<?php
|
|
echo convertToGrams(); // 5000
|
|
function convertToGrams()
|
|
{
|
|
$result = 5 * 1_000;
|
|
return $result;
|
|
}
|