PHP 8.2 - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Feature Requests (https://forum.codeigniter.com/forumdisplay.php?fid=29) +--- Thread: PHP 8.2 (/showthread.php?tid=84855) |
PHP 8.2 - etShops - 11-16-2022 Will Codeigniter 4.3 will plan support php 8.2? I have some question: my application use _remap and autoroute legacy, MY app have ~250 routes How is the best way to replace _remap and replace old legacy autorouting? RE: PHP 8.2 - kenjis - 11-16-2022 I believe the current `develop` and `4.3` branches are PHP 8.2 ready. If you find framework bugs with 8.2, please create an issue on GitHub. RE: PHP 8.2 - kenjis - 11-16-2022 (11-16-2022, 11:01 AM)etShops Wrote: I have some question: my application use _remap and autoroute legacy, Auto-route legacy can be used in v4.3. Auto-route improved does not support _remap() intentionally, so you need to use Defined routes. The following command shows all routes. Define all routes with reference to them. Code: $ php spark routes |