学习笔记
Lovehmm
这个作者很懒,什么都没留下…
展开
-
tp5执行忽略文件命令
命令:git rm -r --cached .git add .git commit -m 'update .gitignore'忽略文件名:gitignore忽略内容:如下/runtime/application/config.php/application/database.php/application/route.php/thinkphp/b原创 2016-12-27 09:00:35 · 1814 阅读 · 0 评论 -
PHP跨越调用接口
// 应用公共文件/** * 创建并并初始化curl * GET方式传值 * @param string $url * @return resouce */function getCurl($url = ''){$defaults = array(CURLOPT_HEADER => 0,CURLOPT_URL => $url,CURLOPT_FRES原创 2016-12-27 09:14:22 · 1440 阅读 · 0 评论 -
js中实现三级联动效果
js:$(function(){ajaxGetArea($("#area"));});function ajaxGetArea(obj){ /** * 请求地址 * 请求数据 */ $.post( '__URL__/getArea', {原创 2016-12-27 09:37:41 · 919 阅读 · 0 评论 -
学习笔记,持续更新中
个人的学习笔记,分享一下,不喜勿喷。原创 2016-12-27 08:56:27 · 398 阅读 · 0 评论 -
点赞和取消赞不刷新页面的方法
//点赞 $(".log_digg").on('click', function () {var post_id = $(this).parent().parent().find(".post_id").val();var log_digg_num =$(this).find(".log_digg_num_"+post_id).html(); l原创 2016-12-27 09:34:39 · 4561 阅读 · 0 评论 -
一种更新数据的方法
//处理bz_connection(XYB,修改于2016.09.22)//先查原先文章所属栏目$result = Db::name('bz_connection')->alias('con')->field('`con`.`weiba_id`')->join('weiba wb', 'con.weiba_id=wb.weiba_id','left')->where("wb.u原创 2016-12-27 09:28:55 · 432 阅读 · 0 评论 -
thinkphp5数据库操作方法小结
一.TP5数据库操作方法 1.name()方法 作用 : 指定默认的数据表名(不含前缀) 示例 : Db::name('weiba_post'); 返回 : Db对象 2.setTable()方法 作用 : 指定默认数据表名(含前缀) 示例 : Db::setT原创 2016-12-27 09:23:59 · 18818 阅读 · 0 评论 -
ThinkPHP5开发(三)使用Behavior检测用户登录状态
http://blog.csdn.net/u012995856/article/details/51889968转载 2016-12-27 09:22:07 · 1454 阅读 · 0 评论 -
htm页面l导出excel表格
Export html table to excel and csv using jquery Excel Export CSV Export 栏目1 栏目2 栏目3 1 2原创 2016-12-27 09:07:24 · 919 阅读 · 0 评论 -
微博web网站的授权流程
原创 2017-08-19 16:58:52 · 653 阅读 · 0 评论