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