Subversion Repositories php-qbpwcf

Rev

Blame | 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

?>