I have two classes:

class ClassOne { } and class ClassTwo {} . I am getting a string which can be either "One" or "Two". Instead of using a long switch statement such as:

switch($str) {
   case "One":
       return new ClassOne();
   case "Two":
       return new ClassTwo();
}

Is there anyway way I can create an instance using a string, i.e. new Class("Class" . $str);

Thanks,

Joel

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

Yes, you can!

$str = "One";
$class = "Class".$str;
$object = new $class();

Other cool stuff you can do in php are:
Variable variables:

$personCount = 123;
$varname = 'personCount';
echo $$varname; // echo's 123

And variable functions & methods.

$func = 'my_function';
$func('param1'); // calls my_function('param1');

$method = 'do_stuff';
$object = > new MyClass();
$object->$method(); // calls the MyClass->do_stuff() method. 
link|improve this answer
Thanks for the examples! – Joel Jan 2 '11 at 12:48
feedback

have a look at example 3 from http://www.php.net/manual/en/language.oop5.basic.php

$className = 'Foo';
$instance = new $className(); // Foo()
link|improve this answer
feedback

You can simply use the following syntax to create a new class (this is handy if you're creating a factory):

$className = $whatever;
$object = new $className;

As an (exceptionally crude) example factory method:

public function &factory($className) {

    require_once($className.'php');
    if(class_exists($className)) return new $className;

    die('Cannot create new "'.$className.'" class - includes not found or class unavailable.');
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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