我有一个包含在另一个文件中的 .php 文件。并且包含的有一个类定义和一个对象实例化
包含的.php:
class MyClass
{
//works
}
$anObject = new MyClass();
包含器.php:
require_once("./included.php");
echo $anObject->localVariable;
返回错误:未定义变量:includer.php 中的anObject
我怎样才能做到这一点?或者我可以这样做吗?
我有一个包含在另一个文件中的 .php 文件。并且包含的有一个类定义和一个对象实例化
包含的.php:
class MyClass
{
//works
}
$anObject = new MyClass();
包含器.php:
require_once("./included.php");
echo $anObject->localVariable;
返回错误:未定义变量:includer.php 中的anObject
我怎样才能做到这一点?或者我可以这样做吗?