Another case: PHP Fatal error: Call to undefined function is_favicon() in // PHP Fatal error: Cannot redeclare wp_get_user_request_data()
Check PHP version as it might be incompatible code after a plugin or WP upgrade. After that upgrade, you might receive some errors like this:
PHP Deprecated: Function create_function() is deprecated in /home/user/public_html/wp-content/plugins/random_plugin.php on line 250
This means that you will need to disable the problematic plugin and see if there is an upgrade available. I would also recommend to upgrade WP.
wp plugin deactivate plugin_name
If WP-CLI is not installed, check this link.
Nice