mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-13 14:45:09 +00:00
12 lines
234 B
PHP
12 lines
234 B
PHP
<?php
|
||
// Объявляем функцию convertToGrams() с 50% вероятностью
|
||
if (rand(0, 1) == 1) {
|
||
function convertToGrams()
|
||
{
|
||
$result = 5 * 1_000;
|
||
echo $result;
|
||
}
|
||
}
|
||
|
||
echo convertToGrams();
|