How can you sort an array in PHP in a stinknormale alphabetische order?

To sort an array in PHP in a standard alphabetical order, you can use the `sort()` function. This function will rearrange the elements of the array in ascending alphabetical order based on their values. Simply pass the array you want to sort as an argument to the `sort()` function.

$array = array("banana", "apple", "orange", "grape");
sort($array);
print_r($array);