<?phpclass hello{ function say() { echo "hello world !"; } }
<?phprequire_once('test1.php'); require_once('test2.php'); require_once('hello.php'); use space\test1\test;use space\test2\test as test2;$test1 = new test();$test2 = new test2(); $hello = new \hello();$test1->say(); $test2->say(); $hello->say();
위 내용은 PHP 글로벌 클래스 인스턴스 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!