#45 Controller Filters in CodeIgniter 4

Поділитися
Вставка
  • Опубліковано 18 січ 2025

КОМЕНТАРІ • 4

  • @vivektankaria4797
    @vivektankaria4797 3 роки тому

    "Bye" is in After function. So it should be called after controller. Why is "Bye" shown before Date ?
    Since Date is in before. It should come first right ?

  • @manideep_talampally
    @manideep_talampally 4 роки тому

    Sir , how to change timezone of codeigniter4, it's taking Chicago time. How to change it for india delhi.

    • @GoPHP
      @GoPHP  4 роки тому +3

      open App.php from below location:
      App/Config/
      find the property
      public $appTimezone = 'America/Chicago';
      change it as
      public $appTimezone = 'Asia/Kolkata';

    • @manideep_talampally
      @manideep_talampally 4 роки тому

      @@GoPHP thanks sir