What changes or updates are expected in PHP6 regarding the availability of a goto command?

In PHP6, the availability of the goto command is expected to be removed or restricted due to its potential for creating unreadable and unmaintainable code. Instead, developers are encouraged to use more structured programming techniques like loops and conditional statements to achieve the same functionality.

// Example of using loops and conditional statements instead of goto command
for ($i = 1; $i <= 10; $i++) {
    if ($i == 5) {
        continue; // Skip iteration when i equals 5
    }
    echo $i . "\n";
}