好的,这是我的结构。
one.php 二.php 三.php
one.php 包括 two.php 和 three.php
二.php是
class two {
function test(){ $var ='gello'; }}
三.php是
class three {
function testt(){ $var ='hello'; }}
那么我怎么能在 three.php 中使用 two.php 的 $var 变量呢?
在 one.php 我可以做到这一点
$one = new two();
$one->var;
任何帮助,将不胜感激。
谢谢