Why is it recommended to use a consistent language (e.g., English) for variables and parameters in PHP scripts?

Using a consistent language, such as English, for variables and parameters in PHP scripts is recommended for better code readability and maintainability. It helps other developers understand the code more easily and reduces the chances of errors or confusion when working collaboratively on a project.

// Example of using consistent language for variables and parameters in PHP script
$firstName = "John";
$lastName = "Doe";

function greetUser($firstName, $lastName) {
    echo "Hello, " . $firstName . " " . $lastName . "!";
}

greetUser($firstName, $lastName);