You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
323 B

<?php
namespace application\model;
use framework\core\Model;
/**
* Index模型类
*/
class IndexModel extends Model{
/**
* 返回数据库版本
*/
public function getVersion(){
return $this->mysqli->getVersion();
}
/**
* 返回数据表前缀
*/
public function getPrefix(){
return $this->prefix;
}
}