Php Passing A Class As A Reference?
in Python, you could do something like this: class SomeClass(object): pass s = SomeClass someClassInstance = s() How could you accomplish the same effect in PHP? From what I under
Solution 1:
You can create instances of dynamic class names; simply pass the name of the class as a string:
classSomeClass{}
$s = 'SomeClass';
$someClassInstance = new$s();
Post a Comment for "Php Passing A Class As A Reference?"