MySQL Server is a cross-platform relational database that allows to access data using Structured Query Language (SQL). MySQL Server have different editions. Community Edition (CE) is an open-source product that...
Mongo Express is a web-based administrative interface for managing MongoDB databases. Mongo Express can be used to create, modify and delete databases, collections, and documents.
This tutorial explains how to...
MongoDB is a cross-platform document database. It is classified as a NoSQL database. Instead of using tables and rows as in the relational databases such as MySQL, MongoDB uses JSON-like...
When working with Docker, it can be useful to monitor real-time events from the Docker server. Events are reported when some action occurs, such as stopping or starting a container...
Docker Hub is a cloud-based repository of Docker images, in which users can create, test, and store images that can be downloaded by other communities. Before pushing image to Docker...
When working with Docker, it can be useful to get detailed information about Docker containers. It includes container creation date, state, host configuration, network settings, mounts, etc. This tutorial explains...
When working with Docker, it can be useful to get detailed information about Docker volumes. It includes volume creation date, driver, mount point, scope, etc. This tutorial demonstrates how to...
Since PHP 8.2, we can use a new extension named Random for generating random numbers via object-oriented way. Random extension is a part of the PHP core and there is...
Since PHP 8.2, classes can be declared as readonly. This means that all class properties automatically becomes readonly. The readonly properties were introduced in PHP 8.1. These properties can be...
PHP supports various regular expression modifiers that can be used with preg_* functions (e.g. preg_match). For example, the i modifier can be used for case-insensitive match. Since PHP 8.2, we...