我从 PHP 中的 OOP 开始,我想做一些事情。让我举个例子:
类.php
<?php
class a {
public function a() {
echo 'a';
}
}
class b {
public function calla() {
$x->a();
}
}
?>
索引.php
<?php
include('classes.php');
$x = new a();
$d = new b();
$d->calla();
?>
这可能吗?我知道我可以做类似的事情:
class b {
public function calla($object) {
$object->a();
}
}
和
$d->calla($x);
但是第一个例子可以吗?