doukui4786 2019-06-06 01:08
浏览 62
已采纳

将数组传递给CodeIgniter中的系统核心Controller.php

I am in the process of updating my CodeIgniter app from version 2.x to 3.1. Previously, I used to call this function to count the number of non-zero numbers in the passed-in array:

function getCountOfNonZero($array, $d) {
    $NonZeroCount = 0;
    foreach($array as $key=>$value) {
        if(is_array($value)) {
            $d = $key;
            $NonZeroCount += getCountOfNonZero($value, $d); }
        else {
              if($value<>0 & $key<>'RES') {
                $NonZeroCount++;
            }
        }
    }
    return $NonZeroCount;
}

Now that I am trying to call this function in version 3.1 of CodeIgniter, I am getting an error. This is how I call the function:

echo "Count of non-zero is: ".$controller->getCountOfNonZero($myArray);

One thing that is different is that the function is in system\core\Controller.php but this is returning an error whenever I call the function and try to pass in the array.

Is there any reason why I can't pass an array to the core system controller in CodeIgniter?

  • 写回答

1条回答 默认 最新

  • douqianxian7008 2019-06-06 01:48
    关注

    Now that you have moved the function into a class you you will need to use $this->getCountOfNonZero($value, $d); when calling the function from within itself.

    function getCountOfNonZero($array, $d) {
        $NonZeroCount = 0;
        foreach($array as $key=>$value) {
            if(is_array($value)) {
                $d = $key;
                $NonZeroCount += $this->getCountOfNonZero($value, $d); }
            else {
                  if($value<>0 & $key<>'RES') {
                    $NonZeroCount++;
                }
            }
        }
        return $NonZeroCount;
    }
    

    Personally I would probably just put the method into a helper file and autoload it, rather than tethering it to your core controller.


    Creating a helper method:

    1. As your method relates to arrays, we could just extend the already existing array helper by creating the following file.

    application/helpers/MY_array_helper.php

    1. Add your original method to the file.

    2. Auto-load it during system initialization. This is done by opening the application/config/autoload.php file and adding the helper to the autoload array.

    3. Usage it anywhere in your application:

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作