I am in a situations where i need to instantiate a class with arguments from within an instance of another class. Here is the prototype:
//test.php
class test
{
function __construct($a, $b, $c)
{
echo $a . '<br />';
echo $b . '<br />';
echo $c . '<br />';
}
}
Şimdi, ben sınıfın cls fonksiyonu aşağıda kullanarak sınıfının üzerinde örneğini gerekir:
class myclass
{
function cls($file_name, $args = array())
{
include $file_name . ".php";
if (isset($args))
{
// this is where the problem might be, i need to pass as many arguments as test class has.
$class_instance = new $file_name($args);
}
else
{
$class_instance = new $file_name();
}
return $class_instance;
}
}
Şimdi ben buna argüman geçerken test sınıfının bir örneğini oluşturmaya çalıştığınızda:
$myclass = new myclass;
$test = $myclass->cls('test', array('a1', 'b2', 'c3'));
It gives error: Missing argument 1 and 2; only first argument is passed.
I yapıcı işlevi argümanları yok olan bir sınıf örneğini gayet iyi çalışır.
Deneyimli PHP geliştiricileri için, yukarıda pek bir sorun olmamalıdır. Lütfen yardım edin.
Teşekkürler