Files
php_8/complicated_functions/dynamic_wrong.php
2022-05-10 22:29:05 +03:00

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()