CakePHP-动态模型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CakePHP-动态模型相关的知识,希望对你有一定的参考价值。
A small snippet on how to create a dynamic model in Cakephp (useful for global functions that need a model to function. IE functions defined in the AppController
<?php // THE DYNAMIC MODEL App::Import('Model', $model); $this->DynamicModel = new $model; // USAGE EXAMPLE function getModelColumns($model){ App::Import('Model', $model); $this->DynamicModel = new $model; } ?>
以上是关于CakePHP-动态模型的主要内容,如果未能解决你的问题,请参考以下文章
Cg入门20:Fragment shader - 片段级模型动态变色(实现汽车动态换漆)
Cg入门19:Fragment shader - 片段级模型动态变色