Chinaunix首页 | 论坛 | 博客
  • 博客访问: 198510
  • 博文数量: 264
  • 博客积分: 6010
  • 博客等级: 准将
  • 技术积分: 2740
  • 用 户 组: 普通用户
  • 注册时间: 2009-06-03 13:25
文章分类

全部博文(264)

文章存档

2011年(1)

2009年(263)

我的朋友

分类:

2009-06-03 16:24:46

在项目开发中,对于表单的处理是必不可少的一个处理,还在为处理复杂表单而烦恼吗?
其实程序员在工作会收集很多相关的处理函数,在工作中项目开发周期开发效率提高很多,关于表单的处理PHP提供了很多各式各样的处理函数,我们是不是应该合理利用,以便给我们以后的开发带来方便呢?

做为处理表单大家会有自己的一套方法,不论是基于各种框架本身的处理机制或是类库,函数库...
在这里我把我写的三个表单元素的处理函数做一下说明,当然了,函数本身还有很多缺陷,在这里还需要改善.希望大家多多提出宝贵意见和心得体会。

以下三个函数是处理options(下拉列表),radios(单选安钮),checkboxs(多选安钮)的处理函数。

用过模板引型开发项目的朋友对数组的构造应该是在熟悉不过了吧。在做标签结合模板也面输出时,数组的构造对于我们布置标签带来了很多方便,在这里我也是根据数组去构造去构造,来输出,不论是直接调用还是运用到模板一样很方便。

/*
* @copyright Copyright (c) 2007 ASEN (bbs.54php.com)
* @author  特蓝克斯
* @package Function
* @date    2007-09-11
* @return  Array
* @Notes   处理表单 Options,Radio,Checkboxs 表单控件
*/

/**
*
* getOptions 参数列表:
* - result        Options 数组
* - vals        Options 数组修改的键值 (Value)
* - except        Options 除"except"值外的数据调用
* - same        Value和Title 值是否相同
* - exceptKey    Options 除"exceptKey"键外的数据调用
*
* @return Array() $options
*/

function getOptions($result,$vals='whatthehellisthis',$except='',$same='',$exceptKey=''
) {
    if(!
$result) return false
;
   
$options = ""
;
    while(list(
$key,$val) = each($result
)) {
        
$checkVal = false
;
        if(
$except
) {
            if(
is_array($except)) $checkVal = in_array($val,$except
);
            else {
                if(
$except == $val) $checkVal = true
;
            }
        }
        if(
$exceptKey
) {
            if(
is_array($exceptKey)) $checkVal = in_array($key,$exceptKey
);
            else {
                if(
$exceptKey == $key) $checkVal = true
;
            }
        }
        if(!
$checkVal
) {
            if(
$same) $key = $val
;
            
$options .= ";
            if(
$key == $vals) $options .= " selected"
;
            
$options .= ">".$val."\n"
;
        }
    }
    return
$options
;
}

/**
*
* getRadios 参数列表:
* - result        Radio 数组
* - name        Radio 名字
* - checked    默认选中第一个,通读索引控制 Radio 的 Checked 状态
* - vals        通过VALUE控制 Radio 的 Checked 状态
* - except        Radios 除"except"值外的数据调用
* - enter        换行参数
* - Events        事件参数
* - style        样式参数
* - disabled    显示参数
* - exceptKey    Radios 除"exceptKey"键外的数据调用
*
* @return Array() $radios
*/
function getRadios($result ,$name="radio" ,$checked='0' ,$vals='whatthehellisthis' ,$except='' ,$enter='0', $Events='' ,$style='border:solid 1 #FFFFFF;' ,$disabled='' ,$exceptKey=''
) {
    if(!
$result) return false
;
   
$radios = ''
;
   
$i = 0
;

     foreach (
$result as $key => $val
) {
        
$checkVal = false
;
         
        if(
$except
) {
            if(
is_array($except)) $checkVal = in_array($val,$except
);
            else {
                if(
$except == $val) $checkVal = true
;
            }
        }
        if(
$exceptKey
) {
            if(
is_array($exceptKey)) $checkVal = in_array($key,$exceptKey
);
            else {
                if(
$exceptKey == $key) $checkVal = true
;
            }
        }

        if(!
$checkVal
) {
            
$radios .= ";
            if(
$key == $vals) $radios .= " checked"
;
            if (
$checked != 'no' && $checked == $i
) {
               
$radios .= " checked"
;
            }
            if (
$disabled != "" && $disabled[$i] == 1
) {
               
$radios .= " disabled"
;
            }
            
$radios .= " style='".$style."' ".$Events.">".$val." "
;
        }
         
        
$i
++;
            if (
$enter !=0 && ($i % $enter) ==0
) {
               
$radios .="
"
;
            }
    }

    return
$radios
;
}

/**
*
* getCheckboxs 参数列表:
* - result        Checkbox 数组
* - name        Checkbox 名字
* - checked    默认选中第一个,通读索引控制 Checkbox 的 Checked 状态
* - vals        通过VALUE控制 Checkbox 的 Checked 状态
* - except        Checkboxs 除"except"值外的数据调用
* - enter        换行参数
* - Events        事件参数
* - style        样式参数
* - disabled    显示参数
* - exceptKey    Checkboxs 除"exceptKey"键外的数据调用
*
* @return Array() $Checkboxs
*/
function  getCheckboxs($result,$name='Checkboxs', $checked='0', $vals='whatthehellisthis',$except='',$enter='0',$Events='',$style='' ,$disabled='',$exceptKey=''
) {
    if(!
$result) return false
;
   
$Checkboxs = ""
;
   
$i = 0
;

     foreach (
$result as $key => $val
) {
        
$checkVal = false
;

        if(
$except
) {
            if(
is_array($except)) $checkVal = in_array($val,$except
);
            else {
                if(
$except == $val) $checkVal = true
;
            }
        }
        if(
$exceptKey
) {
            if(
is_array($exceptKey)) $checkVal = in_array($key,$exceptKey
);
            else {
                if(
$exceptKey == $key) $checkVal = true
;
            }
        }
        if(!
$checkVal
) {
            
$Checkboxs .= ";
            if(
is_array($vals) && array_key_exists($key,$vals)) $Checkboxs .= " checked"
;
            if(!
is_array($vals) && $key == $vals)  $Checkboxs .= " checked"
;
            if (
$checked != 'no' && $checked == $i
) {
               
$Checkboxs .= " checked"
;
            }
            if (
$disabled<>"" && $disabled[$i] ==1
) {
               
$Checkboxs .= " disabled"
;
            }
            
$Checkboxs .= " style=".$style." ".$Events.">".$val." "
;
        }

        
$i
++;
            if (
$enter !=0 && ($i % $enter) ==0
) {
               
$Checkboxs .="
"
;
            }
    }

    return
$Checkboxs
;
}

?>

examples Options 应用

/*
* @copyright Copyright (c) 2007 ASEN (bbs.54php.com)
* @author  特蓝克斯
* @package Function
* @date    2007-09-11
* @return  Array
* @Notes   处理表单 Options 表单控件
*/
include_once "helpers_forms.php"
;


$arr_getoptions
= array(
//                        'key'        => 'value',
                        
'54_name'    => "54master"
,
                        
'54_title'    => "网络编程"
,
                        
'54_group'    =>
"本版讨论群: 19870468"
);

$option  = getOptions($arr_getoptions
);
$option1 = getOptions($arr_getoptions, '', '网络编程'
);
$option2 = getOptions($arr_getoptions, "54_title"
);
$option3 = getOptions($arr_getoptions, "54_title", '',true
);
$option4 = getOptions($arr_getoptions, '', '', '', '54_title'
);
?>
添加调用:








除VALUE值为"网络编程"的全部调用:








修改时调用:








value值和title值相等时 :








除KEY值为"54_title"全部调用:





examples Radio 应用

/*
* @copyright Copyright (c) 2007 ASEN (bbs.54php.com)
* @author  特蓝克斯
* @package Function
* @date    2007-09-11
* @return  Array
* @Notes   处理表单 Radio 表单控件
*/
include_once "helpers_forms.php"
;


$arr_radio
= array(
//                        'key'        => 'value',
                        
'54_name'    => "54master"
,
                        
'54_title'    => "网络编程"
,
                        
'54_group'    =>
"本版讨论群: 19870468"
);

$radio  = getRadios($arr_radio
);
$radio1 = getRadios($arr_radio,'radio1','no'
);
$radio2 = getRadios($arr_radio, 'radio2', 'no', '54_group'
);
$radio3 = getRadios($arr_radio, 'radio3', '', '' ,'网络编程'
);
$radio4 = getRadios($arr_radio, 'radio4', '', '' , '', '', '', '', '' ,'54_title'
);
?>
默认(选中第一个"radio"):






默认(选中补选任何一个"radio"):






修改:






除VALUE值为"网络编程"的全部调用:






除KEY值为"54_title"全部调用:




examples Checkbox应用

/*
* @copyright Copyright (c) 2007 ASEN (bbs.54php.com)
* @author  特蓝克斯
* @package Function
* @date    2007-09-11
* @return  Array
* @Notes   处理表单 Checkbox 表单控件
*/
include_once "helpers_forms.php"
;


$arr_checkBox
= array(
//                        'key'        => 'value',
                        
'54_name'    => "54master"
,
                        
'54_title'    => "网络编程"
,
                        
'54_group'    =>
"本版讨论群: 19870468"
);
$arr_values
= array(
//                        'key'        => 'value',
                        
'54_title'    => "网络编程"
,
                        
'54_group'    =>
"本版讨论群: 19870468"
);
$Checkbox  = getCheckboxs($arr_checkBox
);
$Checkbox1 = getCheckboxs($arr_checkBox, 'checkbox1', 'no'
);
$Checkbox2 = getCheckboxs($arr_checkBox, 'checkbox2', 'no' , $arr_values
);
$Checkbox3 = getCheckboxs($arr_checkBox, 'checkbox3', 'no' ,'54_title'
);
$Checkbox4 = getCheckboxs($arr_checkBox, 'checkbox4', 'no' , '' , '', '', '', '', '' ,'54_title'
);
$Checkbox5 = getCheckboxs($arr_checkBox, 'checkbox5', 'no' , '' , '网络编程'
);
?>
默认(选中第一个"checkbox"):







一个不选择







通过数组构造选中多个Checkbox







选中其中一个Checkbox元素







除KEY值为"54_title"全部调用:







除VALUE值为"网络编程"的全部调用:




阅读(183) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~