模型中的方法
class 模型名{
/**
* 通过ID获取文件名称
*/
public static function getNameById($id)
{
$model = self::findOne($id);
if($model) {
return $model->file_name;
}
return '';
}
}
转载于:https://www.cnblogs.com/l-zl/p/7267170.html
模型中的方法
class 模型名{
/**
* 通过ID获取文件名称
*/
public static function getNameById($id)
{
$model = self::findOne($id);
if($model) {
return $model->file_name;
}
return '';
}
}
转载于:https://www.cnblogs.com/l-zl/p/7267170.html