PHP 8.4.24 Released!

Voting

: eight minus zero?
(Example: nine)

The Note You're Voting On

BPI
3 years ago
You can jump inside the same switch. This can be usefull to jump to default
<?php
$x=3;
switch($x){
    case 0:
    case 3:
        print($x);    
        if($x)
            goto def;
    case 5:
        $x=6;
    default:
        def:
        print($x);
}
?>

<< Back to user notes page

To Top