8月232014
8月232014
php+jq实现简单的对立,ajax异步处理
消息队列和简单处理
<?php
///测试队列
$list = array("测试1"=>"1111111111111111111",
"测试2"=>"22222222222222222222222",
"测试3"=>"111111133333333333333333...阅读全文
评论:0条
8月232014
php时间戳转友好时间小时函数
function mdate($time = NULL) {
$text = '';
$time = $time === NULL || $time > time() ? time() : intval($time);
$t = time() - $time; //时间差 (秒)
if ($t...阅读全文
评论:0条
8月232014
php下载文件--针对大多数的文件类型
function forceDownLoad($filename='' ,$data=''){
if($filename=='' OR $data==''){ return false; }
if(FLASE === strpos($filename,'.')){
return false;...阅读全文
评论:0条
8月232014
8月232014
php将数组缓存成文件
<?php
//将数组保存为文件 - 用户读写配置项,保存配置文件
//本脚本自身要有写权限,生成目标文件要有读取和执行权限
echo '<pre>'; print_r($_SERVER); //这里使用SERVER代替配置数组
$code = var_export($_SERVER, true);
...阅读全文
评论:0条
8月232014
8月232014
php递归删除指定目录下的非空目录及文件
<?php
header('content-type:text/html;charset=utf-8');
function deldir($dirpath){
if(!file_exists($dirpath)){
exit('Nothing is about that!');
}
...阅读全文
评论:0条
8月232014
js全选checkbox
js全选checkbox
<input type="checkbox" name="selectall" value=on onclick="selectAll()">
<script>
function selectAll(form) {
var obj = document.getElement...阅读全文
评论:0条
8月232014
php十六进制转换RGB函数
/**
* 十六进制转RGB
* @param string
* @return array
*/
function hex2rgb($hexColor) {
$color = str_replace('#', '', $hexColor);
if (strlen($color) > 3) {
$rg...阅读全文
评论:0条