vote up 1 vote down star

Hi,

is there any possibility to "invoke" a class instance by a string representation?

In this case i would expect code to look like this:

class MyClass {
  public $attribute;
}

$obj = getInstanceOf( "MyClass"); //$obj is now an instance of MyClass
$obj->attribute = "Hello World";

I think this must be possible, as PHP's SoapClient accepts a list of classMappings which is used to map a WSDL element to a PHP Class. But how is the SoapClient "invoking" the class instances?

flag

2 Answers

vote up 7 vote down check
$class = 'MyClass';
$instance = new $class;

However, if your class' constructor accepts a variable number of arguments, and you hold those arguments in an array (sort of call_user_func_array), you have to use reflection:

$class = new ReflectionClass('MyClass');
$args  = array('foo', 'bar');
$instance = $class->newInstanceArgs($args);

There is also ReflectionClass::newInstance, but it does the same thing as the first option above.

Reference:

link|flag
Damnit! Beat me by 18 seconds... – Matthew Scharley Oct 9 at 9:13
Ah tanks, that easy. :-D One more question, is there a way to test if that class really exist? Like: if( classExists( "MyClass")) { $obj = getInstanceOf( "MyClass"); } – NovumCoder Oct 9 at 9:18
There's class_exists(): php.net/manual/en/…. Watch for the second argument though. – Ionut G. Stan Oct 9 at 9:21
Thank you guys. ReflectionClass is the perfect solution. Well i forgot that this is called Reflection not invoking. :-) – NovumCoder Oct 9 at 9:36
vote up 4 vote down

If the number of arguments needed by the constructor is known and constant, you can (as others have suggested) do this:

$className = 'MyClass';
$obj = new $className($arg1, $arg2, etc.); 
$obj->attribute = "Hello World";

As an alternative you could use Reflection. This also means you can provide an array of constructor arguments if you don't know how many you will need.

<?php
$rf = new ReflectionClass('MyClass');
$obj = $rf->newInstanceArgs($arrayOfArguments);
$obj->attribute = "Hello World";
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.