How can PHP functions be modified to suppress error messages using the "@" symbol?

To suppress error messages in PHP functions, you can prefix the function call with the "@" symbol. This will prevent any error messages or warnings from being displayed on the screen. However, it is generally not recommended to use "@" symbol as it can hide important errors that may affect the functionality of your code.

@function_name();