What are the advantages of using English language conventions in PHP coding instead of German?

Using English language conventions in PHP coding is advantageous because it makes the code more readable and understandable for a wider audience, especially for developers who are not fluent in German. It also aligns with the standard practices in the PHP community, making it easier for others to collaborate on the code. Additionally, English conventions are more likely to be supported by various PHP tools and libraries.

// English language conventions
function calculateTotal($price, $quantity) {
    return $price * $quantity;
}
$total = calculateTotal(10, 5);
echo "Total: $total";