Is it advisable to use English names for variables and functions in PHP code, even when dealing with domain-specific terms like "Straße"?

When dealing with domain-specific terms like "Straße" in PHP code, it is advisable to use English names for variables and functions to ensure consistency and readability for developers who may not be familiar with the specific language. One approach to handle this issue is to use English names for variables and functions, while providing comments or documentation to explain the meaning of domain-specific terms.

// Using English names for variables and functions while providing comments for domain-specific terms

// Define a variable with an English name
$street = "Straße";

// Function with an English name and a comment explaining the domain-specific term
function getAddress($street) {
    // Logic to process the address
    return $street;
}