PHP

PHP Opcache accelerates access

Opcache is a way to avoid the overhead of loading and parsing the PHP script each time by storing the pre-compiled bytecode (Operate Code) of the parsed PHP script in the shared memory. The parser can directly read the cached words from the shared memory. Operate Code, which greatly improves the execution efficiency of PHP

Simulate your API in a Symfony project

If you have a Symfony project that makes HTTP requests to your other projects (be it microservices, front-end and api separation projects, etc.), you may need to mock them for your tests.

Fastadmin two open picture zoom pop-up window

Fastadmin itself does not support functions such as zooming in and zooming out of the pop-up window. The following zooming in and out of various rotation effects can be achieved through two openings.

PHP RSA front and back end encrypted communication

Party B generates a pair of keys (public key and private key), and discloses the public key to Party A. After Party A obtains the public key, it encrypts the data to be transmitted with the public key and sends it to Party B. Party B obtains the public key. After encrypting the data, decrypt it with the private key