为您找到搜索结果:5124个
dedecms5.6 arclist分页的实现方法
代码如下:<scriptlanguage="javascript"type="text/javascript"src="{dede:global.cfg_cmsurl/}/include/dedeajax2.js"></script><script>functionmulti(pagenum,tagid){vartaget_obj=document.getElementById(tagid);vartaget_obj_page=document.getElementById("page_"+tagid);myajax=newDedeAjax(taget_obj,false,false,'','','');myajax.SendGet2("/plus/arcmulti.php?mtype=0&pnum="+pagenum+'&tagid='+tagid);myajax=newDedeAjax(taget_obj_page,false,false,'','','');myajax.SendGet2("/plus/arcmulti.php?...
Android实现文件解压带进度条功能
解压的工具类packagecom.example.videodemo.zip;publicclassZipProgressUtil{/****解压通用方法**@paramzipFileString*文件路径*@paramoutPathString*解压路径*@paramlistener*加压监听*/publicstaticvoidUnZipFile(finalStringzipFileString,finalStringoutPathString,finalZipListenerlistener){ThreadzipThread=newUnZipMainThread(zipFileString,outPathString,listener);zipThread.start();}publicinterfaceZipListener{/**开始解压*/voidzipStart();/**解压成功*/voidzipSuccess();/**解压进度*/voidzipProgress(intprogress);/**解压失败*/voidzipFail();}}解压线程packagecom.e...
.NET Core Quartz使用cron表达式实现定时任务
1、使用Nuget引入Quartz1)可以在Nuget包管理器中搜索Quartz,找到Quartz点击安装2)在Nuget包管理控制台使用下面命令安装引入Install-PackageQuartz3)Quartz中使用的命名空间usingQuartz;usingQuartz.Impl;2、实现Quartz中的IJob接口[DisallowConcurrentExecutionAttribute]public>MessageJob:IJob{privatestaticLoggerlogger=LogManager.GetCurrentClassLogger();publicTaskExecute(IJobExecutionContextcontext){//Console.WriteLine("InfoFromHelloJob");//Thread.Sleep(30000);//LogHelper.WriteInfo("InfoFromHelloJob");returnTask.Run(()=>{logger.Info("MessageJobStart");try{Utils...
c语言高斯模糊源码,C++实现纯高斯模糊算法处理灰度图片
实现功能:C++语言实现纯高斯模糊处理灰度图像,不受图片格式限制算法实现://////程序功能:c语言实现纯高斯模糊处理灰度图像///系统win7,VS2010开发环境,编程语言C++,OpenCV2.4.7最新整理时间whd2016.9.9。//////源图像数据在内存的起始地址。///源和目标图像的宽度。///源和目标图像的高度。/// 通道数,灰度图像cn=1,彩色图像cn=3///sigma的平方是高斯函数的方差///1:能处理8位灰度和24位图像。需要分开进行,后面会合成一个程序// 以下为参考函数实现的整个过程//(1)建立工程,复制粘贴博客代码。//(2)添加malloc()和free()函数的头文件//(3)exp()函数的头文件//(4)修改Gasussblur中形参intsigma为floatsigma,更加符合实际情况//(5)配置OpenCV//(6)调用函数#include"stdafx.h"#include //malloc(),free()函数需要的头文件#include#include //包含...
c语言实现pde算法,快速高斯模糊算法
源地址为:http://incubator.quasimondo.com/processing/gaussian_blur_1.php作者信息为:FastGaussianBlurv1.3byMarioKlingemannprocessing源码:http://incubator.quasimondo.com/processing/fastblur.pde转为C语言实现版本。代码如下://FastGaussianBlurv1.3//byMarioKlingemann//Cversionupdatedandperformanceoptimizationbytntmonks(http://tntmonks.cnblogs.com)//OneofmyfirststepswithProcessing.Iamafan//ofblurring.Especiallyasyoucanuseblurredimages//asabaseforothereffects.SothisissomethingI//mightgetbacktoinlaterexperiments.////Whatyouseeisan...
php实现页面跳转 header函数的使用
header()函数是PHP中进行页面跳转的一种方法,header()函数的主要功能是将HTTP协议标头(header)输出到浏览器。<?//重定向浏览器header("Location:https://www.51dev.com/ask/");//确保重定向后,后续代码不会被执行exit;?> ...
C语言实现字节流与十六进制字符串的相互转换
//字节流转换为十六进制字符串voidByteToHexStr(constunsignedchar*source,char*dest,intsourceLen){ shorti; unsignedcharhighByte,lowByte; for(i=0;i<sourceLen;i++) { highByte=source[i]>>4; lowByte=source[i]&0x0f; highByte+=0x30; if(highByte>0x39) dest[i*2]=highByte+0x07; else dest[i*2]=highByte; lowByte+=0x30; if(lowByte>0x39) dest[i*2+1]=lowByte+0x07; else dest[i*2+1]=lowByte; } return;}//字节流转换为十六进制字符串的另一种实现方式voidHex2Str(constchar*sSrc, char...
微信小程序实现左侧导航栏
wxml<viewclass="content"><viewclass='left'><viewclass="{{flag==0?'select':'normal'}}"id='0'bindtap='switchNav'>8:00-9:00</view><viewclass="{{flag==1?'select':'normal'}}"id='1'bindtap='switchNav'>9:00-10:00</view><viewclass="{{flag==2?'select':'normal'}}"id='2'bindtap='switchNav'>14:00-15:00</view><viewclass="{{flag==3?'select':'normal'}}"id='3'bindtap='switchNav'>15:00-16:00</view></view><viewclass='right'><viewclass='cat...
微信小程序实现列表条件筛选
wxml文件 <viewclass='chooseList'><viewclass="nav"><viewclass="nav-son{{shownavindex==1?'active':''}}"bindtap="listqy"data-nav="1"><viewclass="content">酒店类型</view><viewclass="icon"></view></view><viewclass="nav-sonborders{{shownavindex==2?'active':''}}"bindtap="list"data-nav="2"><viewclass="content">价格</view><viewclass="icon"></view></view><!--<viewclass="nav-son{{shownavindex==3?'active':''}}"bindtap="li...
php模拟浏览器实现http请求,模拟post发送请求,调用接口
一、代码1、index.php在index.php中,请求http://127.0.0.1/test1/test2.php文件,发送http请求。$data1=array('foo','bar','baz','boom','cow'=>'milk','php'=>'hypertextprocessor');$data=http_build_query($data1);$options=array('http'=>array('method'=>'POST','header'=>'Content-type:application/x-www-form-urlencoded','content'=>$data//'timeout'=>60*60//超时时间(单位:s)));$url="http://127.0.0.1/test1/test2.php";$context=stream_context_create($options);$result=file_get_contents($url,false,$context);echo$result;...
PHP实现倒计时功能
<!DOCTYPEhtml><html><head><title>PHP实现倒计时功能</title></head><body><?phpdate_default_timezone_set('PRC');$starttimestr=date('Y-m-dH:i:s',strtotime('now'));$starttimestr=mktime(0,0,0,7,7,2020);//$endtimestr=date('Y-m-dH:i:s',strtotime('+18hours1minutes'));$endtimestr=mktime(18,0,0,date('m'),date('d'),date('Y'));$starttime=strtotime($starttimestr);$endtime=strtotime($endtimestr);$nowtime=time();if($nowtime<$starttime){exit("考试已经结束了,考试时间是:{$starttimestr}...
微信小程序实现视频播放
微信小程序实现视频播放代码:<view><videosrc="{{src}}"binderror="videoErrorCallback"></video></view> ...
PHP实现对站点内容外部链接的过滤方法
熟悉SEO的朋友都知道,对于网站外部链接失效的情况如果链接带有rel="nofollow"属性可以避免不必要的损失。本文就以实例形式演示了PHP实现对站点内容外部链接的过滤方法。具体如下:问题描述:原来站内很多文章都是摘录的外部文章,文章里很多链接要么是时间久了失效了,要么就是一些测试的网址,如:http://localhost/之类的,链接多了的话,就形成站内很多死链接,这对SEO优化是很不利的。解决方法:需要对站点内的内容进行过滤,将不是内部链接的链接加上rel="nofollow"属性。本文借鉴了wordpress的过滤外部链接的函数,将其改一下即可使用。具体代码如下://外部链接增加nofllow$content内容$domain当前网站域名functioncontent_nofollow($content,$domain){preg_match_all('/href="(.*?)"/',$content,$matches);if($matches){foreach($matches[1]as$val){if(strpos($val,$d...
css实现div边框阴影
<styletype="text/css">.div_shadow{width:600px;height:450px;border:#9090901pxsolid;background:#fff;color:#333;-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Strength=4,Direction=135,Color='#000000')";/*ForIE8*/filter:progid:DXImageTransform.Microsoft.Shadow(Strength=4,Direction=135,Color='#000000');/*ForIE5.5-7*/-moz-box-shadow:2px2px10px#909090;/*forfirefox*/-webkit-box-shadow:2px2px10px#909090;/*forsafariorchrome*/box-shadow:2px2px10px#909090;/*foroperaorie9*/}</style> ...
C语言二分法查找的代码实现
二分法查找可以用循环和递归两种方式实现#include<stdio.h>typedefintDataType;typedefunsignedintuint32;typedefintint32;#defineSEARCH_LIST_SIZE(8)int32BinarySearch(DataType*plist,uint32len,DataTypeitem);//循环方式int32BinarySearchRecur(DataType*plist,uint32len,DataTypeitem);//递归方式intmain(intargc,char*constargv[]){int32ret=0;DataTypelist[SEARCH_LIST_SIZE]={1,2,3,4,5,6,7,8};if((ret=BinarySearchRecur(list,SEARCH_LIST_SIZE,2))!=-1){printf("Itemisfound,%d",ret);}else{printf("Donotfind");}}/*-------------------------------...