比方說,我有一個名爲smallBox.php一個類文件:在類中包含類是不好的做法嗎?
<?php
class SmallBox {
public function boxMethod() {}
}
我那麼包括smallBox.php使用「需要」文件到另一個類:
<?php
class BigBox {
public function __construct() {
require 'smallBox.php';
$box = new SmallBox();
$box->boxMethod();
}
}
?>
我是新來的PHP OOP和MVC,並想知道是否在BigBox類中包含smallBox.php被認爲是不好的做法?
您可能會在http://cstheory.stackexchange.com/ –
bad \好它的所有情況下得到更好的答案。 – 2012-11-28 05:20:30
嘗試[自動加載](http://phpmaster.com/autoloading-and-the-psr-0-standard) – Gordon