mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
8 lines
117 B
PHP
8 lines
117 B
PHP
<?php
|
|
function convert(int $value, int $factor = 1_000) : void
|
|
{
|
|
echo $value * $factor;
|
|
}
|
|
|
|
convert(11); // 11000
|