php笔记
陈泽川
这个作者很懒,什么都没留下…
展开
-
数据库搜索 按照时间条件
$date格式 2015-12-10 $bengin = strtotime($date); //转换时间戳 select * from {$this->table} where ( time >= ".$bengin." and time < ".strtotime(" + 1 day ", $bengin).") "); //time大于$bengin时间 并且小于+1天的$beng原创 2015-12-10 10:04:02 · 376 阅读 · 0 评论 -
mysql 1067 打不开
配置MYSQL下data文件中删除原创 2015-12-10 18:08:02 · 233 阅读 · 0 评论 -
strtotime小笔记
$year = date("y",time()); $month = date("m",time()); $day = date("d",time()); 是可以把年月日拆分 date("y-m-d", strtotime($year.'-'.$month.'-'.$day)); strtotime里面 - 得加符号引起来 不然转换会错误 Y-M-D如果大写.输出原创 2015-12-14 16:40:43 · 176 阅读 · 0 评论 -
循环update不要写判断是否存在 if(!$XX)
在循环中写update的时候 如果其中有一条记录数据相同没有更新 那么会返回false 这样循环就会自动退出 爆炸BUG原创 2016-01-22 17:39:28 · 280 阅读 · 0 评论 -
两个站之间互传数据
A 发送接收方 function sumbit(){ $url = "123"; $data = array( 'id_num' => $id_num, ); $result = $this->postContent($url,$data);//传递的url 和 数据 取到想要的数据 $list = json_decode($result, true);//接收返回的数据时候原创 2016-03-22 10:43:22 · 265 阅读 · 0 评论 -
打印JS
function a(){ $(".dayinTable").print({ globalStyles: true, mediaPrint: false, stylesheet: null, noPrintSelector: ".no-print", iframe: true, append: null, prepend: null, manuallyCopyFormValues原创 2016-03-12 17:04:22 · 208 阅读 · 0 评论