1
のようなクラスを呼び出します。PHP - 私は2つの変数持ってcall_user_func
$class : contains the name of the class
$params : contains the parameters to initialize the class like ["key1" => "value1", "key2" => "value2"]
をそして、私は、関数call_user_func(のようなクラスを呼びたい)機能
すなわちで行います
$classObject = call_class($class, $params);
// Do the same that:
$classObject = new $class("value1", "value2");
あなたの答えは正しいですが、Mark Bakerの回答はOOP –
@ClémentLaffitteagreeです。 –