Source Code:
(back to article)
<?php function some_function() { echo "Hello, world!"; } $function_name = 'some_function'; $arguments = [1, 2, 3]; if (function_exists($function_name)) { call_user_func_array($function_name, $arguments); }
Result:
Report an issue