thinkphp5.1的公共函数库 common.php

首先引入Db类 或者是模型

use think\Db;

 

然后写公共函数

function getUserName($id){

  return Db::table('zh_user')->where('id',$id)->value('name');

}

当然了也可以套一个壳判断有没有这个函数 function_exists();

 

完整版

//根据用户主键的id,查询用户名
use think\Db;

if(!function_exists('getUserName')){
    
    function getUserName($id){
    
        return Db::table('zh_user')->where('id',$id)->value('name');
        
    }
}

 

转载于:https://www.cnblogs.com/xm666/p/10622755.html

你可能感兴趣的:(thinkphp5.1的公共函数库 common.php)