Subversion Repositories qbpwcf-lib(archive)

Rev

Rev 910 | Rev 915 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php

#使用命名空間qbpwcf
namespace qbpwcf{

        #匯入外部套件
        include("interfaceA.php");
        include("interfaceB.php");
        
        \interA\interfaceA::A();
        echo "<hr>";
        \interB\interfaceB::A();
        echo "<hr>";
        \interB\interfaceB::B();

        }#namespace qbpwcf end

?>