mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-01 16:49:53 +00:00
10 lines
188 B
PHP
10 lines
188 B
PHP
<?php
|
|
function convertToGrams($value, $factor)
|
|
{
|
|
$result = $value * $factor;
|
|
return $result;
|
|
}
|
|
|
|
define('BYTES_IN_KBYTES', 1024);
|
|
echo convertToGrams(11, BYTES_IN_KBYTES); // 11264
|