PHP

PHP: Things to note when using createFromFormat

In this article, we will explore the root cause of this issue, which is the misunderstanding of the createFromFormat method. We will also briefly introduce the internal workings of DateTime::createFromFormat, and provide practical solutions and example code to help you avoid similar problems. The createFromFormat method is also available in the Carbon library, which also uses DateTime::createFromFormat, so Carbon has the same phenomenon, and the solutions in this article also apply to Carbon. Through this article, we hope to help you better understand date and time processing, and be able to more effectively deal with related issues, ensuring that your applications can work correctly in all situations. Let's start exploring this key topic together.

PHP

How to add query strings to pagination in Laravel

Laravel is a framework that allows for easy implementation of pagination. However, when clicking on pagination links, if query strings are not added, values entered may be cleared upon page transition. To solve this problem, Laravel provides two methods: appends() and withQueryString().

PHP

PHP Laravel:How to download files

In many websites with management interfaces, especially for services that analyze data and store data, you will often see the option to download files so that users can get the data they want to their computers. Laravel also provides methods to download files, images, or data from databases into text files for exporting to the server in response to such operational needs. The following section will discuss the commonly used methods and how to export the contents of Array as a csv file.

PHP

Connecting to RDS from Laravel+Docker via bastion server(EC2)

RDS is configured to connect only from EC2, so if you want to connect to RDS from your local environment, you need to do some work. In this article, I will briefly show you how to connect to RDS from a Laravel application running in a Docker container in the local environment via a bation server(EC2).

PHP

Laravel: A brief summary of the lifecycle

This article is a compilation of notes on the Laravel Lifecycle, including the Kernel, Middleware, ServiceProvider, and Route, which I think will be of great help to those learning Laravel in terms of understanding the overall look of Laravel and mastering its lifecycle. Laravel framework or investigating the underlying functionality will be of great help.