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