using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; using System.Web.Caching; namespace Utility { /// <summary> /// 缓存操作,默认缓存1分钟 /// </summary> public static class CacheHelper { static int ca…
十年河东,十年河西,莫欺少年穷 学无止境,精益求精 记录下字符串类库,方便今后查阅 主要包含了字符串解决,去除HTML,SQL注入攻击检测,IP地址处理,Cookies操作,根据身份证获取性别.姓名.年龄等等 代码如下: using System; using System.Collections.Generic; using System.Web; using System.Collections; using System.Text; using System.Text.RegularExp…
lavarel数据库查找别名操作 一.总结 一句话总结: 当有表前缀的时候:DB::table('users as table1')->select(DB::raw('table1.id'))->get(); 对应sql语句:select table1.id from `ykttb_users` as `table1` 没有表前缀的时候可以不用加那个DB::raw()方法 1.laravel中raw方法的作用是什么(比如 DB::table('users as table1')->sel…