したがって、私はオブジェクト指向プログラミングの世界では初めてであり、現在この問題に直面しています(すべてがコードに記述されています)。
<?php
class MyClass {
// Nothing important here
}
class MyAnotherClass {
protected $className;
public function __construct($className){
$this->className = $className;
}
public function problematicFunction({$this->className} $object){
// So, here I obligatorily want an $object of
// dynamic type/class "$this->className"
// but it don't works like this...
}
}
$object = new MyClass;
$another_object = new MyAnotherClass('MyClass');
$another_object->problematicFunction($object);
?>
誰かが私を助けることができますか?
ありがとう、マキシム(フランスから:私の英語でごめんなさい)