What are some recommended text editors or IDEs that can automatically indent PHP code for better readability?

When writing PHP code, proper indentation is crucial for readability and maintainability. Using a text editor or integrated development environment (IDE) that can automatically indent your code can greatly improve the overall quality of your PHP scripts. Some recommended tools for this purpose include PhpStorm, Visual Studio Code, and Sublime Text, all of which offer features to automatically indent PHP code for better readability.

<?php

// Example PHP code snippet with proper indentation for better readability
function greet($name) {
    echo "Hello, $name!";
}

$name = "John";
greet($name);

?>