CodeIgniter-HMVC icon indicating copy to clipboard operation
CodeIgniter-HMVC copied to clipboard

each deprecated in Modules Line 83

Open mercomtw opened this issue 6 years ago • 3 comments

Hello, after Update to PHP 7.2 I become this Message. Line 83: (is_array($module)) ? list($module, $params) = each($module) : $params = NULL; How can I resolve this Problem?

mercomtw avatar Dec 17 '18 10:12 mercomtw

Ok, after study the PHP-Manual i solved it. (is_array($module)) ? list($module, $params) = [key($module), current($module)] : $params = NULL;

mercomtw avatar Dec 17 '18 13:12 mercomtw

may i know which line in specific, sorry for the delay

alzen8work avatar Apr 19 '19 04:04 alzen8work

@alzen8work

https://github.com/alzen8work/CodeIgniter-HMVC/blob/803c6d925d70c3f88cf8d139ccf1424333fd3929/application/third_party/MX/Modules.php#L83

andrejuseu avatar Aug 30 '19 07:08 andrejuseu