2013年3月26日

摘要: 1 $bg:是否用空白填补,默认自动填补,背景填充颜色在系统-附件设置里(true/false) 2 //imgurl图片路径 width自定义缩略的宽度 height自动能够以缩略高度 bg背景是否填充(true/false) 3 function thumb($imgurl, $width, $height, $bg = true) 4 { 5 global $cfg_mainsite,$cfg_multi_site; 6 $thumb = eregi("http://",$imgurl)?str_replace(... 阅读全文
posted @ 2013-03-26 17:07 阿牛的哥 阅读(443) 评论(0) 推荐(0) 编辑
摘要: PHP实现定时执行任务的方法,用到的函数 ignore_user_abort(),set_time_limit(0),sleep($interval)此代码只要运行一次后关闭浏览器即可。不知道能程序的性能会不会影响很大!ignore_user_abort();//关掉浏览器,PHP脚本也可以继续执行.set_time_limit(0);// 通过set_time_limit(0)可以让程序无限制的执行下去$interval=60*30;// 每隔半小时运行do{ //这里是你要执行的代码 sleep($interval);// 等待5分钟}while(true); 阅读全文
posted @ 2013-03-26 09:30 阿牛的哥 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 图片预加载123456789101112(function($){var cache = [];// Arguments are image paths relative to the current page.$.preLoadImages = function() {var args_len = arguments.length;for (var i = args_len; i--;) {var cacheImage = document.createElement('img');cacheImage.src = arguments[i];cache.push(cacheI 阅读全文
posted @ 2013-03-26 09:28 阿牛的哥 阅读(158) 评论(0) 推荐(0) 编辑

导航