假设我有一个名为 smallBox.php 的类文件:
<?php
class SmallBox {
public function boxMethod() {}
}
然后,我使用“require”将 smallBox.php 文件包含到另一个类中:
<?php
class BigBox {
public function __construct() {
require 'smallBox.php';
$box = new SmallBox();
$box->boxMethod();
}
}
?>
我是 PHP OOP 和 MVC 的新手,想知道在 BigBox 类中包含 smallBox.php 是否被认为是不好的做法?