It would be nice to customize the rendering of a checkbox or radio. So that i can create image buttons
example https://codepen.io/barisgurenc/pen/KLVNoR
i did not have a proposed api look
Added missing getter methods for sonarLogin
and sonarPassword
Fix #90 #73 #98
bug: add missing getter for sonar vars
Any workaround?
any update?
@damianwadley
with UTC+1
i get Unknown or bad timezone (UTC+1)
with BST
i did not get a exception
docker run --rm -it php:8.0.27-cli php -r "var_dump((new DateTime())->setTimezone(new \DateTimeZone('UTC+1')));"
Fatal error: Uncaught Exception: DateTimeZone::__construct(): Unknown or bad timezone (UTC+1) in Command line code:1
Stack trace:
#0 Command line code(1): DateTimeZone->__construct('UTC+1')
#1 {main}
thrown in Command line code on line 1
Same result with php 8.2.1
So when BST
is not supported it should also return the exception.
The following code produce different results
PHP 8.0.27
docker run --rm -it php:8.0.27-cli php -r "var_dump((new DateTime())->setTimezone(new \DateTimeZone('BST')));"
object(DateTime)#1 (3) {
["date"]=>
string(26) "2023-01-11 14:11:28.643248"
["timezone_type"]=>
int(2)
["timezone"]=>
string(3) "BST"
}
PHP 7.4.
docker run --rm -it php:7.4.33-cli php -r "var_dump((new DateTime())->setTimezone(new \DateTimeZone('BST')));"
object(DateTime)#1 (3) {
["date"]=>
string(26) "2023-01-11 13:11:28.643248"
["timezone_type"]=>
int(2)
["timezone"]=>
string(3) "BST"
}
8.0.27
No response