本文整理匯總了PHP中Factory::model方法的典型用法代碼示例。如果您正苦於以下問題:PHP Factory::model方法的具體用法?PHP Factory::model怎麽用?PHP Factory::model使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Factory
的用法示例。
在下文中一共展示了Factory::model方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: depend
/**
* Load another model as a dependency of this one.
*
* @param string $model_name
*/
function depend($model)
{
foreach (func_get_args() as $name) {
if (isset($this->depends->{$name})) {
continue;
}
$this->depends->{$name} =& Factory::model($name);
}
}
示例2: import_model
/**
* Instantiate one or more models and load them into the holder
*
* @param string $name,... Name(s) of model(s) to import
*/
function import_model($name)
{
foreach (func_get_args() as $name) {
$this->models->{$name} =& Factory::model($name);
if ($this->models->{$name} === false) {
trigger_error("Model {$name} does not exist");
die;
}
}
}
示例3: foreach
/**
* Load another model as a dependency of this one.
*
* @param string $model_name
*/
function &depend($model)
{
foreach (func_get_args() as $name) {
if (isset($this->depends->{$name})) {
continue;
}
$this->depends->{$name} =& Factory::model($name);
}
// return a reference to the last model loaded
return $this->depends->{$name};
}
示例4:
#!/usr/bin/env php
<?php
/**
* An example of a commandline script in Pronto.
*
*/
@chdir(dirname($argv[0]) . '/..');
require_once 'profiles/cmdline.php';
$m_user =& Factory::model('user');
$users = $m_user->find("status='active'");
while ($u = $users->load_one()) {
echo "{$u['email']}\n";
}
exit(0);