Files
php_8/functions/function_declare_error.php
2022-05-10 22:29:05 +03:00

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;
}
}