1

我想从控制器中的操作生成“schema.php”。我试过了:

$m = new SchemaShell();
$m->params = array('force');
$m->generate();

但这不起作用。显示几个通知。

如何让它发挥作用?

谢谢。

4

1 回答 1

1

解决方案:

$m = new SchemaShell();
$m->params = array('force' => 1, 'file' => 'schema.php');
$m->startup();
$m->generate();
于 2012-07-12T13:07:44.357 回答