php封装参数检查

2021/5/1 12:56:54

本文主要是介绍php封装参数检查,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

2021年5月1日09:30:23

 

if (!function_exists('parameterCheck')) {

    /**
     * 如果是double的话,也使用float,需要处理其他类型数据自己添加
     * @param type $param 需要处理的参数
     * @param type $ExpectDataType  期望返回数据类型
     * @param type $defaultValue  如果没有值返回的默认值
     * @return type
     * @throws \Exception
     */
    function parameterCheck($param, $ExpectDataType, $defaultValue) {
        $dataType = ['int', 'float', 'string', 'array'];
        if (!in_array($ExpectDataType, $dataType)) {
            throw new \Exception('数据类型不存在');
        }
        if (empty($param)) {
            return $defaultValue;
        }
        if ($ExpectDataType == 'int') {
            return (int) htmlFilter($param);
        } elseif ($ExpectDataType == 'float') {
            return (float) htmlFilter($param);
        } elseif ($ExpectDataType == 'string') {
            return (string) htmlFilter($param);
        } elseif ($ExpectDataType == 'array') {
            return (array) $param;
        }
    }

}

if (!function_exists('htmlFilter')) {

    /**
     * 
     * @param type $param 需要html转义和去除空格的参数
     * @throws \Exception
     */
    function htmlFilter($param) {
        return htmlspecialchars(trim($param), ENT_QUOTES, "UTF-8");
    }

}

 



这篇关于php封装参数检查的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程