How can a function like "Text()" be improved to make its purpose more clear in PHP?

The function "Text()" could be improved by renaming it to a more descriptive name that clearly indicates its purpose, such as "formatText()" or "sanitizeText()". This will make it easier for other developers to understand the function's intended use without needing to look at its implementation.

function formatText($text) {
    // Function implementation here
}