|
本帖最后由 thesnake 于 2011-3-2 14:59 编辑
PHP复制代码
$first = new test (1);
$second = new test (12);
print_r($first->value);
echo "<br>";
print_r($second->value);
class test
{
var $id;
var $value;
function __construct ($id) {
$this->id = $id;
$this->value = $id + 1;
}
}
复制代码
上面代码,用普通的php类,是很平常的应用,这样就可以生成两个互不影响的对象.
但是因为CI应用model的时候,是不能传递参数的,所以像上面例子这样的代码,用CI的model要如何实现? |
|