Esempio n. 1
0
<html>
  <head>
    <title></title>
  </head>
  <body>
    <p>
      <?php 
class King
{
    public static function proclaim()
    {
        echo "A kingly proclamation!";
    }
}
King::proclaim();
?>
    </p>
  </body>
</html>