You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to add days to a time parsed date by doing
<?php namespace App\Libraries;
use CodeIgniter\Libraries;
use CodeIgniter\I18n\Time;
class Book
{
public function getTime()
{
$time = Time::parse('June 1, 2018', 'Australia/Sydney');
$time = $time->addDays(7);
return $time;
}
}
In attempt to getTime() am having class Locale not found Error; Please what do i need to set or tweak to get this working. Thanks.
The text was updated successfully, but these errors were encountered:
I am trying to add days to a time parsed date by doing
In attempt to getTime() am having class Locale not found Error; Please what do i need to set or tweak to get this working. Thanks.
The text was updated successfully, but these errors were encountered: