Return true if the given function has been defined
<?php function_exists(string $function): bool
<?php public function __construct()
{
if (! function_exists('pcntl_fork')) {
throw new Exception("Cannot create process forks: PCNTL is not supported on this system.");
}
}