06/02_namespace3.php


  1  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
  2  <html>
  3  <head>
  4    <meta http-equiv="Author" content="Imrich BURANSKY" />
  5    <meta http-equiv="Content-Type" content="text/html; charset=Windows-1250" />
  6    <title>Namespace - prax</title>
  7  </head>
  8  <body>
  9  <div>
 10  <h2>Namespace - prax</h2>
 11  <?php
 12    // Náhradné riešenie: použiť prívlastok ako súčasť mena triedy
 13    class Math_Complex {
 14      //...code...
 15      function __construct() {
 16        print("hey");
 17      }
 18    }
 19  
 20  $m = new Math_Complex();  // hey
 21  ?>
 22  <!--  *** Výsledok ***
 23  
 24  hey
 25  
 26  -->
 27  </div>
 28  </body>
 29  </html>

« Späť