Preview:
$variable = 10; // Global variable

function shadowingExample() {
    $variable = 5; // Local variable with the same name
    echo $variable; // Output: 5
}

shadowingExample();
echo $variable; // Output: 10 (global variable is not modified)
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter