Tag: time zone
-
Post Views: 107 Step 1: Create a local project directory in WSL (such as ~/wwwroot/hyperf-skeleton) 2. Modify the mount directory and adapt the path to the local directory. Reference:Hyperf official documentation development under Docker . 3. Create a project in the container, the creation of the project fails, and an error is reported: Your requirements could not be resolved to…
-
Post Views: 21 1. Response error in GraphQL: expected a value of type \”datetime\” but received: 2021-11-23t02:04:48.000000z. as shown in Figure 1 2. 2021-11-23t02:04:48.000000z is a datetime with time zone, and it is decided to convert to a UTC datetime format without time zone. Implement the corresponding conversion based on Carbon. in line with expectations. as shown in Figure 2…
-
Post Views: 19 1. When writing a log in Laravel 6, the log file at that time was not created. When writing the log, the time of the operating system is Beijing time: 2023-09-15 11 , but laravel-2023-09-15.log is not generated. as shown in Figure 1 2. Found only Laravel-2023-09-14.log, print output: config(app.timezone). The reason for the discovery is that…