mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +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
|