mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-03 16:43:03 +00:00
7 lines
183 B
PHP
7 lines
183 B
PHP
<?php
|
|
$rand = 'rand';
|
|
$func = 'not_existed_function';
|
|
|
|
echo $rand(); // 1549131126
|
|
echo $func(); // PHP Fatal error: Uncaught Error: Call to undefined function not_existed_function()
|