摘要: function get_access_token(){ $get_token=M('token')->where("name='access_token'")->find(); $access_token=$get_token['value']; if(time() > $get_token['o 阅读全文
posted @ 2018-01-15 10:56 渔夫三拳 阅读(168) 评论(0) 推荐(0) 编辑
摘要: var borswer = window.navigator.userAgent.toLowerCase(); if ( borswer.indexOf( "ie" ) >= 0 ) { //IE内核浏览器 var strEmbed = '<embed name="embedPlay" src="d 阅读全文
posted @ 2018-01-15 10:33 渔夫三拳 阅读(656) 评论(0) 推荐(0) 编辑
摘要: <?php echo $cfg_copyright ?><?php require_once(dirname(__FILE__).'/include/config.inc.php'); ?><!-- 获取列表单项ID --><?php echo $gourl; ?><?php require_onc 阅读全文
posted @ 2017-08-31 14:15 渔夫三拳 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 控制器代码 <?phpnamespace Home\Controller;use Think\Controller;header('Content-type:text/html;charset=utf-8');class ShoppingController extends Controller { 阅读全文
posted @ 2017-08-31 13:29 渔夫三拳 阅读(743) 评论(1) 推荐(0) 编辑
摘要: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>By:德马{这是一个好心人}</title> <script type="text/javascript"> //下面 阅读全文
posted @ 2017-08-04 11:54 渔夫三拳 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 页面 <form method="post" action="/Home/ClassImages/uploads" enctype="multipart/form-data"> <input type="file" name="photo[]" multiple='multiple'>//只有使用了 阅读全文
posted @ 2017-07-25 16:20 渔夫三拳 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 下载phpqrcode 整合到Thinkphp框架 在“ThinkPHP\Library\Vendor\”下新建目录phpqrcode,将压缩包内容解压到该文件夹下。 调用phpqrcode生成二维码 在IndexController控制器下添加如下方法: public function qrcod 阅读全文
posted @ 2017-06-19 11:40 渔夫三拳 阅读(188) 评论(0) 推荐(0) 编辑
摘要: jQuery部分 首先声明全局变量,后面分页用到。 PHP ajax.php接收每次前端页面的ajax请求,根据提交的页码page,计算总记录数和总页数,读取对应页码下的数据列表,并将结果以JSON格式返回给前端页面。 阅读全文
posted @ 2017-06-15 17:13 渔夫三拳 阅读(237) 评论(0) 推荐(0) 编辑
摘要: /** * 验证手机号是否正确 * @author honfei * @param number $mobile */ function isMobile($mobile) { if (!is_numeric($mobile)) { return false; } return preg_match 阅读全文
posted @ 2017-06-14 09:26 渔夫三拳 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 今天被一个简单的问题搞得头昏脑胀,在后台得到的一个不规则的数组,例如: $sss( array2( array4(), array5() ), array3() )这种三维数组,要给最基础的红颜色的数组添加字段并赋值,我的方法是 foreach ($schoolInfo as $k => $v) { 阅读全文
posted @ 2017-06-08 00:57 渔夫三拳 阅读(693) 评论(0) 推荐(0) 编辑