上一页 1 ··· 3 4 5 6 7 8 下一页

2016年7月1日

laravel路由

摘要: 路由分类: 基本路由:接收一个URL和一个闭包 Route::get('foo/bar',function(){ //闭包函数 return 'hello world'; }) 注册路由的方法:get,post,put,delete,match,any 可以用函数url生成路由对应的URLs:$ur 阅读全文

posted @ 2016-07-01 14:09 Mr.风的影子 阅读(315) 评论(0) 推荐(0) 编辑

2016年6月30日

Laravel 5 中的配置

摘要: 介绍 Laravel 的所有的配置文件都放在了 config 这个目录的下面。每个选项都有介绍。 config ├── app.php ├── auth.php ├── cache.php ├── compile.php ├── database.php ├── filesystems.php ├─ 阅读全文

posted @ 2016-06-30 13:30 Mr.风的影子 阅读(2050) 评论(1) 推荐(0) 编辑

2016年6月29日

Jquery的each遍历数据组成JSON

摘要: 遍历每个标签的值 html代码: <volist name="parArr" id="item" key="$key"> <tbody> <tr> <td class="center number">{$key+1}</td> <td id='product_id' class="product_i 阅读全文

posted @ 2016-06-29 18:50 Mr.风的影子 阅读(928) 评论(0) 推荐(0) 编辑

JS上传图片预览及图片限制

摘要: HTML代码: <form action="__SELF__" method="post" enctype='multipart/form-data'> <input type='hidden' name='biaozhi' value='1' /> <label><span>认证类型:</span 阅读全文

posted @ 2016-06-29 13:14 Mr.风的影子 阅读(430) 评论(0) 推荐(0) 编辑

2016年6月28日

什么是PHP闭包???

摘要: 闭包函数:临时创建一个没有名称的函数,经常作为回调函数来用。 通俗的说就是:子函数可以使用父函数中的局部变量,这种行为叫做闭包。 1、匿名函数赋值 $demo=function($str){ echo $str; } $demo('hello,world'); 2、闭包可以从父作用域中继承变量,任何 阅读全文

posted @ 2016-06-28 16:05 Mr.风的影子 阅读(601) 评论(0) 推荐(0) 编辑

微信开发模板--easywechat

摘要: 链接地址:https://easywechat.org/zh-cn/docs/installation.html 阅读全文

posted @ 2016-06-28 11:49 Mr.风的影子 阅读(540) 评论(0) 推荐(0) 编辑

2016年6月27日

ThinkPHP的join方法

摘要: 两张表: 表一:pre_company_member 关联字段:comp_id 表二:pre_company 关联字段:comp_id 查询这两表中的数据。 方法一:驼峰法 $member=M('CompanyMember'); $member_info=$member->join('pre_com 阅读全文

posted @ 2016-06-27 18:58 Mr.风的影子 阅读(2962) 评论(1) 推荐(0) 编辑

查找微信用户的信息

摘要: 一、通过全局Access Token获取用户基本信息 1. 用户关注以及回复消息的时候,均可以获得用户的OpenID 其中的FromUserName就是OpenID 2. 然后使用access_token接口,请求获得全局Access Token 返回结果: 3. 再使用全局ACCESS_TOKEN 阅读全文

posted @ 2016-06-27 18:30 Mr.风的影子 阅读(1091) 评论(0) 推荐(0) 编辑

2015年3月27日

python实现简单爬虫功能

该文被密码保护。 阅读全文

posted @ 2015-03-27 16:39 Mr.风的影子 阅读(1) 评论(0) 推荐(0) 编辑

2015年3月11日

sys模块

摘要: sys 模块提供了许多函数和变量来处理 Python 运行时环境的不同部分.处理命令行参数在解释器启动后, argv 列表包含了传递给脚本的所有参数, 列表的第一个元素为脚本自身的名称.---------------------------------------------------------... 阅读全文

posted @ 2015-03-11 14:04 Mr.风的影子 阅读(189) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 下一页

导航