上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 47 下一页
摘要: js代码 后台程序 阅读全文
posted @ 2016-03-30 18:42 fleam 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 原版 地址 http://paulrhayes.com/experiments/cube/multiCubes.html http://paulrhayes.com/experiments/cube/index.html 阅读全文
posted @ 2016-03-26 14:59 fleam 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 在CSS3中,可以利用transform功能来实现文字或图像的旋转、缩放、倾斜、移动这四种类型的变形处理,本文将对此做详细介绍。 一.旋转 rotate 用法:transform: rotate(45deg); 共一个参数“角度”,单位deg为度的意思,正数为顺时针旋转,负数为逆时针旋转,上述代码作 阅读全文
posted @ 2016-03-26 14:57 fleam 阅读(13469) 评论(0) 推荐(0) 编辑
摘要: 1、首先,获得当前用户的id 2、有一个流程表,这个流程表里就两个字段,一个是父id,一个是子id,多对多的关系 3、信息表扩展了两个字段,一个是关于哪个用户审核的,一个是审核状态 4、根据当前用户的id(也是流程表里的子id)查询父id 5、父id与信息表里的id(审核人id)比较,如果id是一致 阅读全文
posted @ 2016-03-25 16:03 fleam 阅读(699) 评论(0) 推荐(0) 编辑
摘要: sudo apt-get install vim 阅读全文
posted @ 2016-03-12 10:49 fleam 阅读(129) 评论(0) 推荐(0) 编辑
摘要: sudo apt-get install fcitx-table-wbpy安装fcitx 中文是灰色的就拖到第一个 桌面右上角有个设置,可以添加拼音 拼音特别难用 阅读全文
posted @ 2016-03-09 20:12 fleam 阅读(178) 评论(0) 推荐(0) 编辑
摘要: <#if x.content?length lt 200> ${x.content} <#else> ${x.content[0..201]}... </#if> 阅读全文
posted @ 2016-03-06 11:12 fleam 阅读(771) 评论(0) 推荐(0) 编辑
摘要: 假设叫数组 $my_array; . 代码如下: // 新建一个空的数组. $tmp_array = array(); $new_array = array(); // 1. 循环出所有的行. ( $val 就是某个行) foreach($my_array as $k => $val){ $hash 阅读全文
posted @ 2016-03-02 16:28 fleam 阅读(446) 评论(0) 推荐(0) 编辑
摘要: Array ( [0] => 12 [1] => 17 [2] => 17 [3] => 17 [4] => 17 [5] => 3 [6] => 3 [7] => 3 [8] => 3 [9] => 3 ) Array ( [0] => 12 [4] => 17 [9] => 3 ) Array 阅读全文
posted @ 2016-03-02 11:03 fleam 阅读(293) 评论(0) 推荐(0) 编辑
摘要: <?php $h=date('H'); if($h>=8 && $h<=20) echo '白天'; else echo '夜晚'; ?> 阅读全文
posted @ 2016-02-27 15:07 fleam 阅读(338) 评论(0) 推荐(0) 编辑
摘要: $str=preg_replace("/\s+/", " ", $str); //过滤多余回车 $str=preg_replace("/<[ ]+/si","<",$str); //过滤<__("<"号后面带空格) $str=preg_replace("/<\!--.*?-->/si","",$st 阅读全文
posted @ 2016-02-26 09:57 fleam 阅读(2660) 评论(0) 推荐(0) 编辑
摘要: if($row['name']==$_SESSION['name']){$checked="checked disabled";}else{$checked=" ";} $isin = in_array($row['name'],$array); if($isin){ echo "<label id 阅读全文
posted @ 2016-02-26 08:54 fleam 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 服务端 <?php /** * File name server.php * 服务器端代码 * * @author guisu.huang * @since 2012-04-11 * */ //确保在连接客户端时不会超时 set_time_limit(0); //设置IP和端口号 $address 阅读全文
posted @ 2016-02-19 17:09 fleam 阅读(247) 评论(0) 推荐(0) 编辑
摘要: D:\software\phpStudy\php55 阅读全文
posted @ 2016-02-19 16:33 fleam 阅读(114) 评论(0) 推荐(0) 编辑
摘要: <?php if(extension_loaded('sockets')){ echo "已开启"; }else{ echo "未开启"; } ?> 阅读全文
posted @ 2016-02-19 16:28 fleam 阅读(1248) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 47 下一页