dynamic class names in php

前端 未结 7 1628
-上瘾入骨i
-上瘾入骨i 2020-12-07 00:31

I have a base class called field and classes that extend this class such as text, select, radio, checkbox, <

7条回答
  •  时光取名叫无心
    2020-12-07 00:59

    You can also use reflection, $class = new ReflectionClass($class_name); $instance = $class->newInstance(arg1, arg2, ...);

提交回复
热议问题