这段代码演示了如何通过php建立一个简单的用户注册表单及提交程序<?php if(isset($_POST['submit'])){ # connect to the database here # search the database to see if the user name has been ……继续阅读 » 水墨上仙 5年前 (2021-03-12) 1722浏览 1784个赞
js实现的单位轮流值班轮换表<script language="javascript"> var src="张三,李四,王五,赵六,钱七,孙八,曾久" var srcArray=src.split(",") var beginDate=new Date(20……继续阅读 » 水墨上仙 5年前 (2021-03-12) 3282浏览 442个赞
javascript通过正则表达式验证用户输入的金额是否正确<script type="text/javascript"> <!-- function MoneyCheck(){ var isNum = /^\d+(\.\d+)?$/; var money = docum……继续阅读 » 水墨上仙 5年前 (2021-03-12) 2560浏览 1337个赞
通过记录开始时间和结束时间计算一段脚本的之行时间<?php //Create a variable for start time $time_start = microtime(true); // Place your PHP/HTML/JavaScript/CSS/Etc. Here //Create a variable for en……继续阅读 » 水墨上仙 5年前 (2021-03-12) 1727浏览 766个赞
JS如何访问navigator.* 变量<script type="text/javaScript"><!-- // dw() is just a alias for document.write()// to make the code shorter function dw(s){ docu……继续阅读 » 水墨上仙 5年前 (2021-03-12) 2740浏览 2211个赞
JavaScript通过正则表达式处理url参数var url='www.baidu.com?a=123&b=456&c=789&e=dfsdfsdfsdfsdfsdfsdf&f=46545454545454785&g=e23232dsfvdfvdf'; /** * 格式化查询字符串(正则……继续阅读 » 水墨上仙 5年前 (2021-03-12) 2961浏览 1990个赞
通过JS打开图片另存为对话框,提示用户保存文件<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title> New Document </title> <……继续阅读 » 水墨上仙 5年前 (2021-03-12) 1788浏览 2527个赞
JavaScript判断浏览器的类型var request = false;var btype=getinternet(); function getinternet() { if(navigator.useragent.indexof("msie")>0) { ret……继续阅读 » 水墨上仙 5年前 (2021-03-12) 2422浏览 1914个赞
node.js log模块日期格式化 在node.js开发过程中使用了npm install log默认下载的模块,日期时间很不符合习惯。[Tue Dec 25 2012 21……继续阅读 » 水墨上仙 5年前 (2021-03-12) 2552浏览 549个赞
本代码首先通过head进行301转向,如果失败,则通过http-equiv=”Refresh”转向,如果不行再通过js进行转向,再不行直接在页面上输出链接地址让用户自己点击链接转向function safe_redirect($url, $exit=true) { // Only use the header red……继续阅读 » 水墨上仙 5年前 (2021-03-12) 2469浏览 1692个赞
javascript获取当前鼠标的坐标位置<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <ht……继续阅读 » 水墨上仙 5年前 (2021-03-12) 1313浏览 2594个赞
一个伦敦奥运会倒计时的JS代码,简单的修改一下就可以用作其它倒计时<SCRIPT LANGUAGE="JavaScript"> //作者:www.tongqiong.com<!-- var urodz= new Date("July 28,2012"); var s="伦敦奥……继续阅读 » 水墨上仙 5年前 (2021-03-12) 3181浏览 640个赞
JS解析json数据并将json字符串转化为数组的实现方法,json数据在ajax实现异步交互时起到了很重要的作用,他可以返回请求的数据,然后利用客户端的js进行解析,这一点体现出js的强大,本文介绍JS解析json数据并将json字符串转化为数组的实现方法。<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML……继续阅读 » 水墨上仙 5年前 (2021-03-12) 2127浏览 1213个赞
html5 canvas制作的简单时钟效果<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <style type="text/css&……继续阅读 » 水墨上仙 5年前 (2021-03-12) 3255浏览 466个赞
JS redirect转向方法<script type="text/javascript"><!-- window.location = "http://www.google.com/"//--></script>……继续阅读 » 水墨上仙 5年前 (2021-03-12) 2615浏览 278个赞
jquery限制textarea的字数长度并显示已输入字符长度<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">……继续阅读 » 水墨上仙 5年前 (2021-03-12) 3244浏览 2055个赞
Exception in thread "main" org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'a' available at org.springframework.beans.factory……继续阅读 » 开心洋葱 5年前 (2021-03-12) 1900浏览 0评论1567个赞
修改一下第二行的url地址即可获得你想要的网页的html代码<?php // display source code $lines = file('http://google.com/'); foreach ($lines as $line_num => $line) { // loop thru e……继续阅读 » 水墨上仙 5年前 (2021-03-10) 3087浏览 0评论2449个赞
php版快速排序代码function quicksort($seq){ if(!count($seq)) return $seq; $k = $seq[0]; $x = $y = array(); for($i=count($seq); --$i;) { if($seq[$i] <= $k) { $x[] = $……继续阅读 » 水墨上仙 5年前 (2021-03-10) 1895浏览 0评论1061个赞
jQuery读写操作cookie的代码演示,可以对cookie进行读写操作,可以设置域名和过期时间 插件代码/*! * jQuery Cookie Plugin v1.3 * https://github.com/carhartl/jquery-cookie * * Cop……继续阅读 » 水墨上仙 5年前 (2021-03-10) 1798浏览 0评论1132个赞
这段代码可以帮助你判断任意图片的主色调,使用了简单的统计算法实现$i = imagecreatefromjpeg("image.jpg"); for ($x=0;$x<imagesx($i);$x++) { for ($y=0;$y<imagesy($i);$y++) { $rg……继续阅读 » 水墨上仙 5年前 (2021-03-10) 1568浏览 0评论677个赞
需要判断代码运行环境是否是HTTPS服务器,只需要判断_SERVER[‘HTTPS’]是否打开即可if ($_SERVER['HTTPS'] != "on") { echo "This is not HTTPS"; }else{ echo &……继续阅读 » 水墨上仙 5年前 (2021-03-10) 2628浏览 0评论1365个赞
php实现二分查找算法// $low and $high have to be integersfunction BinarySearch( $array, $key, $low, $high ){ if( $low > $high ) // termination case { return -1; ……继续阅读 » 水墨上仙 5年前 (2021-03-10) 2016浏览 0评论1529个赞
php检查日期是否合法function check_date($date) { //检查日期是否合法日期 $dateArr = explode("-", $date); if (is_numeric($dateArr[0]) && is_numeric($dateArr[1]) &&……继续阅读 » 水墨上仙 5年前 (2021-03-10) 1453浏览 0评论896个赞
php自己实现memcached的队列类<?php/* * memcache队列类 * 支持多进程并发写入、读取 * 边写边读,AB面轮值替换 * @author lkk/lianq.net * @create on 9:25 2012-9-28 * * * @example: * $obj = new memcacheQu……继续阅读 » 水墨上仙 5年前 (2021-03-10) 1743浏览 0评论101个赞
php无限分类获得当前位置的函数<?php/* * @name pcb_article_position * @access public * @param int $id * @param string $split * @return string */function pcb_article_position ……继续阅读 » 水墨上仙 5年前 (2021-03-10) 1946浏览 0评论2722个赞
php获取访问者浏览器<? function browse_infor() { $browser="";$browserver=""; $Browsers =array("Lynx","MOSAIC","AOL","Opera&q……继续阅读 » 水墨上仙 5年前 (2021-03-10) 2850浏览 0评论382个赞
php检查时间是否合法function check_time($time) { //检查时间是否合法时间 $timeArr = explode(":", $time); if (is_numeric($timeArr[0]) && is_numeric($timeArr[1]) &&am……继续阅读 » 水墨上仙 5年前 (2021-03-10) 2786浏览 0评论1005个赞
php时间比较函数,返回两个日期相差几秒、几分钟、几小时或几天 function DateDiff($date1, $date2, $unit = "") { //时间比较函数,返回两个日期相差几秒、几分钟、几小时或几天 switch ($unit) { case 's': ……继续阅读 » 水墨上仙 5年前 (2021-03-10) 2431浏览 0评论1654个赞
php把全角数字转换为半角数字<? function GetAlabNum($fnum){ $nums = array("0","1","2","3","4","5","6","……继续阅读 » 水墨上仙 5年前 (2021-03-10) 2101浏览 0评论1198个赞
php重定向的三种方法<? 方法一:header("Location: index.php"); 方法二:echo "<scrīpt>window.location ="$PHP_SELF";</scrīpt>"; //OSPHP.COm.CN 方法三:ec……继续阅读 » 水墨上仙 5年前 (2021-03-10) 2444浏览 0评论2608个赞
php写入文件函数<? function writetofile($file_name,$data,$method="w") { $filenum=fopen($file_name,$method); //OSPHP.COM.Cn开源 flock($filenum,LOCK_EX); $file_data=fwrite……继续阅读 » 水墨上仙 5年前 (2021-03-10) 3108浏览 0评论2024个赞
php相对路径转换成绝对路径<? function relative_to_absolute($content, $feed_url) { preg_match('/(http|https|ftp):///', $feed_url, $protocol); $server_url = preg_rep……继续阅读 » 水墨上仙 5年前 (2021-03-10) 1905浏览 0评论683个赞
php取得网页上的所有链接<? function get_all_url($code){ preg_match_all('/<as+href=["|']?([^>"' ]+)["|']?s*[^>]*>([^>]+)</……继续阅读 » 水墨上仙 5年前 (2021-03-10) 3765浏览 0评论609个赞
php去除html标记<? function Text2Html($txt){ $txt = str_replace(" "," ",$txt); $txt = str_replace("<","<",$txt); ……继续阅读 » 水墨上仙 5年前 (2021-03-10) 1905浏览 0评论2190个赞
php生成excel文档<? header("Content-type:application/vnd.ms-excel"); header("Content-Disposition:filename=test.xls"); echo "test1t"; echo "t……继续阅读 » 水墨上仙 5年前 (2021-03-10) 3050浏览 0评论1308个赞
php获取访问者的操作系统信息<? function osinfo() { $os=""; $Agent = $GLOBALS["HTTP_USER_AGENT"]; if (eregi('win',$Agent) && strpos($Agent, '……继续阅读 » 水墨上仙 5年前 (2021-03-10) 2295浏览 0评论414个赞
php删除指定的目录,本代码会递归删除子目录<?php/** * Delete a file, or a folder and its contents (recursive algorithm) * * @author Aidan Lister <aidan@php.net> * @version 1.0……继续阅读 » 水墨上仙 5年前 (2021-03-10) 2162浏览 0评论2024个赞
这段代码可以自动根据post数组的键值创建同名变量,这个功能使用非常方便,不用提前声明变量<?php$expected=array('username','age','city','street');foreach($expected as $key){ ……继续阅读 » 水墨上仙 5年前 (2021-03-10) 2139浏览 0评论1365个赞
php简单截断字符串函数,如果截断在字符串后自动加上省略号function short($txt,$size){ $short = $size - 3; if(strlen($txt) > $size){ $data = substr( $txt, 0, $short )."..."; ……继续阅读 » 水墨上仙 5年前 (2021-03-10) 1925浏览 0评论1869个赞
将HTML表格的每行每列转为数组,采集表格数据<? function get_td_array($table) { $table = preg_replace("'<table[^>]*?>'si","",$table); //oSPHP.COM.C……继续阅读 » 水墨上仙 5年前 (2021-03-10) 1484浏览 0评论1436个赞
php获取当前urlfunction curPageURL() { $pageURL = 'http'; if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";} $pageURL .= "://"; i……继续阅读 » 水墨上仙 5年前 (2021-03-10) 2316浏览 0评论2052个赞
返回字符串中的所有单词 $distinct=true 去除重复<? function split_en_str($str,$distinct=true) { preg_match_all('/([a-zA-Z]+)/',$str,$match); if ($distinct == true……继续阅读 » 水墨上仙 5年前 (2021-03-10) 2279浏览 0评论2676个赞
php将12小时制转换成24小时制,输入格式为:02:30:00 pm 转换成:14:30:00<?phpfunction to_24_hour($hours,$minutes,$seconds,$meridiem){ $hours = sprintf('%02d',(int) $hours); $minut……继续阅读 » 水墨上仙 5年前 (2021-03-10) 1510浏览 0评论431个赞
javascriipt通过当前时间解决GET和POST的缓存问题在postUrl后面添加当前时间为参数,可以有效的解决缓存问题因为每次提交的url地址都是不同的var currentTime = new Date();var n = currentTime.getTime();postUrl = "http://www.example.c……继续阅读 » 水墨上仙 5年前 (2021-03-10) 1959浏览 0评论1084个赞