dongsui5464 2010-06-12 19:17
浏览 41
已采纳

嵌套动态PHP类

I may just need a terminology update, but I have been playing in Magento and Joomla, and they do references like

$mage = new Mage;
$mage->block('blockname');

where class Mage through some process I am failing to figure out is calling:

class blockname extends something{

}

Don't quote me on that code, however I am looking to do something like that where I have a file that I can do $myscript->block('blockname'); and it will load and call the file with class blockname.

  • 写回答

1条回答 默认 最新

  • douci2022 2010-06-12 19:23
    关注
    class Mage {
        private $block;
    
        public function block($blockname) {
            if (!class_exists($blockname, true)) {
                throw new InvalidArgumentException("Not a valid class name: $blockname");
            }
            $this->block = new $blockname;
        }
    }
    

    The loading of the class definition (if not already done) is typically accomplished through autoloading (see here).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度