- 博客(26)
- 收藏
- 关注
原创 mermaid测试
流程图sequenceDiagramA->> B: QueryB->> C: Forward queryNote right of C: Thinking…C->> B: ResponseB->> A: Forward response甘特图ganttdateFormat YYYY-MM-DDtitle Shop项目交付计划section 里程碑 0.1数据库设计 :active, p1, 2016-08-15
2022-04-02 15:29:12 839
原创 Apache如何解决跨域资源访问
找到配置文件 httpd.conf#LoadModule headers_module modules/mod_headers.so去掉#注释(开启apache头信息自定义模块)配置文件 httpd.conf大概295行,改为 Require all granted如果项目里有.htaccess文件放入这段代码<IfModule mod_headers.c>...
2019-09-20 10:49:03 4251
原创 confirm确认删除跳转后避免链接输出
修改前:点击确认,执行时会把http://baidu.com输出<a href='javascript:if(confirm("删除后将无法恢复数据 确认删除?")==true){window.location.href="http://baidu.com";}'>删除</a>修改后:正确写法<a href='http://baidu.com' onc...
2019-09-10 10:50:59 666
原创 get/post/curl/curl_multi_*并发请求
//get/post请求$opts = array( 'http'=>array( 'method'=>"GET", 'timeout'=>5,//单位秒 ));$opts = array( 'http'=>array( 'method'=>"POST", 'header'=>"Content-type: appl
2018-01-17 17:56:14 650
原创 抓取远程图片保存到本地
$url = ‘http://tieba.baidu.com/f?kw=%E5%A5%BD%E5%90%AC%E7%9A%84%E6%AD%8C‘; result=filegetcontents(result = file_get_contents(url); preg_match_all(“/
2017-05-19 10:13:45 2063
原创 PHP过滤重复的值
function assoc_unique($arr, $key) { $tmp_arr = array(); foreach($arr as $k => $v) { if(in_array($v[$key], $tmp_arr)) { unset($arr[$k]); } else {
2016-03-17 15:51:51 964
转载 点击Ctrl+Enter提交
<script type="text/javascript">var isIE = navigator.userAgent.indexOf("MSIE")>0;/*** @deprecated onkeydown function* @param{obj} object**/function KeyDown(obj){obj.onkeydown = function(e){
2016-03-17 15:49:45 588
转载 限制图片大小
function CheckImg(img){ var MaxWidth=400;//设置图片宽度界限 var MaxHeight=400;//设置图片高度界限 var HeightWidth=img.offsetHeight/img.offsetWidth;//设置高宽比 var WidthHeight=img.offsetWidth/img.offsetHeight;//设置宽高
2016-03-17 15:48:48 318
原创 限制字数(半角全角)
<script type="text/javascript"> function checkLength() { var which = $("#content").val();var totalLength = 0;var maxChars = 140; var list = which.split("");//if (list.length > maxChars) //list.v
2016-03-17 15:46:59 454
转载 js-全选
function selectAll(){obj=document.getElementsByName('check');for(var i=0;i<obj.length;i++){if(obj.item(i).checked == true){obj.item(i).checked = false;}else{obj.item(i).checked = true;}}}
2016-03-17 15:45:28 209
转载 判断复选框是否被选中
function check(){ var obj=document.getElementsByName('check'); var uid=''; for(var i=0; i<obj.length; i++){ if(obj[i].checked) uid+=obj[i].value+','; } if(uid == '') { alert('
2016-03-17 15:44:38 438
原创 分享帖子到腾讯、新浪微博
1.<!--百度分享按钮--><div id="bdshare" class="bdshare_t bds_tools get-codes-bdshare"><a class="bds_qzone" title="分享到QQ空间">QQ空间</a><a class="bds_tsina" title="分享到新浪微博">新浪微博</a><a class="bds_tqq" title="分享到腾讯微
2016-03-17 15:43:42 484
转载 循环日期
$array = range(date('Ym',min($mStr)),date('Ym',max($mxStr))); $new_date = array(); foreach ($array as $val){ // 先补1-31天的日期 $a = 1; for ($a=1; $a<=31; $a++){
2016-03-17 15:41:20 222
原创 产生随机字符串函数
function random($length) {$hash = '';$chars = 'abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz';$max = strlen($chars) - 1;mt_srand((double)microtime() * 1000000);for($i = 0; $i < $length
2016-03-17 15:38:52 353
转载 添加或减少控件
<script type="text/javascript">inv_lines= 0;function invform_line_add() {var tb= document.getElementById("invite_table");if( !tb ){ return; }var tr= tb.getElementsByTagName("TR");if( !tr || tr.length =
2016-03-17 15:36:24 532
转载 PHP获取一年中的每星期的开始日期和结束日期
function get_week($year) { $year_start = $year . "-01-01"; $year_end = $year . "-12-31"; $startday = strtotime($year_start); if (intval(date('N', $startday)) != '1') { $startday
2016-03-17 15:35:00 306
原创 判断字符串长度,中英文混合
$str = '世界123';preg_match_all('/./us', $str, $match);echo count($match[0]);
2016-03-17 15:33:43 550
原创 打乱多维数组
function rec_assoc_shuffle($array) { $ary_keys = array_keys($array); $ary_values = array_values($array); shuffle($ary_values); foreach($ary_keys as $key => $value) {
2016-03-17 15:28:08 379
转载 js倒计时跳转
<body><div><div id="timeOutDiv">5 秒后页面将自动跳转到网站首页</div></div></body><script type="text/javascript">var time=5;//倒计时秒数setTimeout('changeCount()',1000);//初始化计时,一秒后开始执行//倒计时操作function changeCount(){if(time
2016-03-17 15:26:54 348
转载 中文截取函数
/*** 中文截取函数*/function mbsubstr($str, $start=0, $length, $suffix=true, $charset="utf-8") {if(function_exists("mb_substr"))$slice = mb_substr($str, $start, $length, $charset);elseif(function_exists('icon
2016-03-17 15:24:12 822
转载 linux下装php5+mysql5+apache
环境是red hat linux 4+mysql5+apache 2+php51、安装apache:tar zvxf httpd-2.0.46.tar.gzcd httpd-2.0.46./configure –prefix=/usr/local/apache2 –enable-so \–enable-mods-shared=most &&make &&make install设定开机自动启动apa
2016-03-17 15:23:01 574
转载 如何获取一段时间内的日期列表
![这里写图片描述](http://www.phpernote.com/uploadfiles/editor/201403201010126920.jpg)/**参数分别是开始时间戳,结束时间戳*/function timeList($beginTimeStamp,$endTimeStamp){ if(!is_numeric($beginTimeStamp)||!is_numeric
2016-03-17 15:20:22 899
转载 循环时间段中的月份
StartMonth=‘2014−08−12′;//开始日期StartMonth = ‘2014-08-12’; //开始日期 EndMonth = ‘2015-10-20’; //结束日期 ToStartMonth=strtotime(ToStartMonth = strtotime( StartMonth ); //转换一下 ToEndMonth=strtotime(ToEn
2016-03-17 15:10:40 622
转载 js 增加控件
//增加控件 var index=1; function addFile() { var div =document.getElementById(“defined”); var file=document.createElement(“input”); file.setAttribute(“type”,”file”);
2016-03-17 15:04:02 425
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人