Datetime issue when switching site language CakePHP 3
up vote
1
down vote
favorite
I'm working on a CakePHP 3 application and the problem that I'm having right now is that I'm using the PHP date function to display dates in format like "date month year" (for example: 12 Sept 2018) like so:
date('d M Y', strtotime(my_mysql_datetime));
but the problem is that it works when the website is in english, but when I change the website language to french for example, the datetime format also changes which results in strtotime returning false.
How can I prevent the datetime that I get from my database to change when I switch the website language?
php cakephp php-7.2 cakephp-3.6
add a comment |
up vote
1
down vote
favorite
I'm working on a CakePHP 3 application and the problem that I'm having right now is that I'm using the PHP date function to display dates in format like "date month year" (for example: 12 Sept 2018) like so:
date('d M Y', strtotime(my_mysql_datetime));
but the problem is that it works when the website is in english, but when I change the website language to french for example, the datetime format also changes which results in strtotime returning false.
How can I prevent the datetime that I get from my database to change when I switch the website language?
php cakephp php-7.2 cakephp-3.6
Where do you getmy_mysql_datetime
from? If its from anEntity
,my_mysql_datetime
should be either aCakeI18nTime
orCakeI18nDate
object which extends PHPDateTime
where you can call ->format() like somy_mysql_datetime->format('d M y')
– Vindur
Nov 12 at 8:39
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I'm working on a CakePHP 3 application and the problem that I'm having right now is that I'm using the PHP date function to display dates in format like "date month year" (for example: 12 Sept 2018) like so:
date('d M Y', strtotime(my_mysql_datetime));
but the problem is that it works when the website is in english, but when I change the website language to french for example, the datetime format also changes which results in strtotime returning false.
How can I prevent the datetime that I get from my database to change when I switch the website language?
php cakephp php-7.2 cakephp-3.6
I'm working on a CakePHP 3 application and the problem that I'm having right now is that I'm using the PHP date function to display dates in format like "date month year" (for example: 12 Sept 2018) like so:
date('d M Y', strtotime(my_mysql_datetime));
but the problem is that it works when the website is in english, but when I change the website language to french for example, the datetime format also changes which results in strtotime returning false.
How can I prevent the datetime that I get from my database to change when I switch the website language?
php cakephp php-7.2 cakephp-3.6
php cakephp php-7.2 cakephp-3.6
edited Nov 11 at 3:00
asked Nov 11 at 2:51
user765368
5,0492075133
5,0492075133
Where do you getmy_mysql_datetime
from? If its from anEntity
,my_mysql_datetime
should be either aCakeI18nTime
orCakeI18nDate
object which extends PHPDateTime
where you can call ->format() like somy_mysql_datetime->format('d M y')
– Vindur
Nov 12 at 8:39
add a comment |
Where do you getmy_mysql_datetime
from? If its from anEntity
,my_mysql_datetime
should be either aCakeI18nTime
orCakeI18nDate
object which extends PHPDateTime
where you can call ->format() like somy_mysql_datetime->format('d M y')
– Vindur
Nov 12 at 8:39
Where do you get
my_mysql_datetime
from? If its from an Entity
, my_mysql_datetime
should be either a CakeI18nTime
or CakeI18nDate
object which extends PHP DateTime
where you can call ->format() like so my_mysql_datetime->format('d M y')
– Vindur
Nov 12 at 8:39
Where do you get
my_mysql_datetime
from? If its from an Entity
, my_mysql_datetime
should be either a CakeI18nTime
or CakeI18nDate
object which extends PHP DateTime
where you can call ->format() like so my_mysql_datetime->format('d M y')
– Vindur
Nov 12 at 8:39
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53245435%2fdatetime-issue-when-switching-site-language-cakephp-3%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Where do you get
my_mysql_datetime
from? If its from anEntity
,my_mysql_datetime
should be either aCakeI18nTime
orCakeI18nDate
object which extends PHPDateTime
where you can call ->format() like somy_mysql_datetime->format('d M y')
– Vindur
Nov 12 at 8:39