mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-01 16:49:53 +00:00
8 lines
105 B
PHP
8 lines
105 B
PHP
<?php
|
|
function convertToGrams()
|
|
{
|
|
$result = 5 * 1_000;
|
|
echo $result;
|
|
}
|
|
convertToGrams(); // 5000
|