mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-13 14:45:09 +00:00
15 lines
231 B
PHP
15 lines
231 B
PHP
<?php
|
|
$flag = true;
|
|
|
|
if ($flag) {
|
|
echo convertToGrams(); // Fatal error: Uncaught Error: Call to undefined function
|
|
}
|
|
|
|
if ($flag) {
|
|
function convertToGrams()
|
|
{
|
|
$result = 5 * 1_000;
|
|
echo $result;
|
|
}
|
|
}
|