예제 #1
0
파일: Row.php 프로젝트: krecek/nrsn
	public function __construct(NStatement $statement)
	{
		$data = array();
		foreach ($this as $key => $value) {
			$data[$key] = $value;
			unset($this->$key);
		}
		foreach ($statement->normalizeRow($data) as $key => $value) {
			$this->$key = $value;
		}
	}
예제 #2
0
	public function __construct(NStatement $statement)
	{
		$statement->normalizeRow($this);
	}