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