editplus利用正则表达式快速定位

例如我要找到user_jj表保存数据的语句

做法:editplus选择正则表达式输入  user_jj.*save

就可以定位到:M('user_jj')->where(array('tgbz_id'=>$peiduidate['id']))->save(array('zt'=>0));

错误的做法:M('user.*save    因为标点符号要先转义

原文地址:https://www.cnblogs.com/lvchenfeng/p/5286255.html