mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-03 16:43:03 +00:00
9 lines
127 B
PHP
9 lines
127 B
PHP
<?php
|
|
function convertToGrams($value)
|
|
{
|
|
$result = $value * 1_000;
|
|
return $result;
|
|
}
|
|
|
|
echo convertToGrams(11); // 11000
|