update page now

Voting

The Note You're Voting On

rupvdfhbh at REMOVE-THIS dot mozmail dot com
1 month ago
Superglobal scope of class static properties, at the risk of stating the obvious.

<?php
class Alfa {
    public static $superglobal = 'visible everywhere';
}

function demoGlobal( ) {
    echo 'Alfa::$superglobal '.Alfa::$superglobal;
}

demoGlobal();   // outputs Alfa::$superglobal visible everywhere
?>

<< Back to user notes page

To Top