| <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Model_Detailed extends Lin_Model {	function __construct(){	parent::__construct();	$this->load->database();	$this->table = 'detailed';    $this->load_table('detailed');}	/** 通过描述查找查找 */	public function get_time($time)	{		return  $this->find("time = '$time'");		}}  //end class
 |