Which software programs for Windows offer code folding functionality for PHP development?

When working on PHP development projects, having code folding functionality can greatly improve code organization and readability. Some popular software programs for Windows that offer code folding for PHP development include Visual Studio Code, Sublime Text, and PhpStorm. By utilizing code folding, you can easily collapse and expand sections of code, making it easier to navigate and focus on specific parts of your PHP code.

// Example PHP code snippet demonstrating code folding functionality

// This is a comment
function helloWorld() {
    // This is another comment
    echo "Hello, World!";
}

// This section of code can be folded
if ($condition) {
    // Code block to be folded
    echo "Condition is true";
}