我想知道在构造函数中调用一个类来访问该类的某些方法是否正确:
class myClass {
private static $instance;
private $header;
private function __construct() {
$callAnotherClass = new callAnotherClass();
$someVariable = $callAnotherClass->someMethod( 'param' );
}
}
我自愿不发布构造函数的内容。