我从0开始在新论坛的新项目中工作,我想添加一个不错的方法和...等 1.第一: 我试图在类中调用文件的类,我的意思是: 我有一个文件class.php,例如auther main.php和index.php 在class.php中,我创建了我的类,并且在main.php中我创建了auther类main,我在class.php中包含了一个类似于类的函数...
class.php:
<?PHP
class test{
function hello(){ echo "Hello World !"; }
}
?>
main.php
<?PHP
class main{
function _test_(){
require_once("class.php");
return new test();
}
function __destruct(){
echo "good bye";
}
}
index.php:
<?PHP
include_once("main.php");
$main = new main();
$main->_test_()->hello();
echo "<br> what !!!!???? <br>";
?>
现在的结果是:
Hello World !
what !!!!????
good bye
我想知道为什么在Hello World结果之后,类破坏没有出现? ?&GT;