drngnh708353 2018-02-03 15:13
浏览 28
已采纳

将功能与不同的呼叫方法结合起

I have 2 functions

This one generates numbers only

//Generate a string of only numbers.
function GenerateNUM($length)
{
    $alphabet = '1234567890';
    $tip = array();
    $alphaLength = strlen($alphabet) - 1;
    for ($i = 0; $i < $length; $i ++) {
        $n = rand(0, $alphaLength);
        $tip[] = $alphabet[$n];
    }
    return implode($tip);
}

This one generates numbers and letters

//Generate a string of numbers and letters.
function GenerateAll($length)
{
    $alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890';
    $pass = array();
    $alphaLength = strlen($alphabet) - 1;
    for ($i = 0; $i < $length; $i ++) {
        $n = rand(0, $alphaLength);
        $pass[] = $alphabet[$n];
    }
    return implode($pass);
}

and I call it like this

$ValidationCode = GenerateNUM(12);

or this

$ValidationCode = GenerateAll(12);

It works great but my question is do I really need 2 blocks of code? is there a way to create one function and be able to decide if numbers and letters are called or just numbers? or am I over thinking it?

  • 写回答

1条回答 默认 最新

  • dongzao9044 2018-02-03 15:22
    关注

    Example of a combined singular function based off your code:

    function GenerateCode($length,$type='ALPHA')
    {
        $alphabet = (($type == 'ALPHA')?'ABCDEFGHIJKLMNOPQRSTUVWXYZ':'') .'1234567890';
        $code = array();
        $alphaLength = strlen($alphabet) - 1;
        for ($i = 0; $i < $length; $i ++) {
            $n = rand(0, $alphaLength);
            $code[] = $alphabet[$n];
        }
        return implode($code);
    }
    
    $ValidationCode = GenerateCode(12,'NUM');// just makes a numbers only code
    $ValidationCode = GenerateCode(12,'ALPHA');// makes an alphanumeric code
    

    But there is nothing wrong with multiple small utility functions though. The naming keeps them clean and obvious their intent. However if you have a LOT of duplicated code between a bunch of utility functions, then you can combine them with a second parameter and adjusting small pieces inside based on that param (like above).


    A slightly better example of generating a random string like your function (includes upper and lower case lettering):

    function GenerateCode($length,$type='ALPHA')
    {
        $string = '';
        for ($n=1; $n <= $length; $n++) {
            if ($type == 'NUM') {
                $string .= mt_rand(0,9);
            } else {
                $randnum = mt_rand(0,61);
                $string .= ( ($randnum < 10) ? chr($randnum+48) :  // number chr 48 - 57
                            (($randnum < 36) ? chr($randnum+55) :  // upperletter chr 65 - 90
                                               chr($randnum+61) ));// lowerletter chr 97 - 122
            }
        }
        return $string;
    }
    
    // example GenerateCode(12,'ALPHA') output: XNu1n833b2ox
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看