PHP: Cast to Float

PHP

Let’s see how we can cast/convert one data type to another data type in PHP. We can as one data type to another using one of the following- Casting operator and Functions.

PHP: Cast to Integer

PHP

Let’s see how we can cast/convert one data type to another data type in PHP. We can as one data type to another using one of the following- Casting operator and Functions.

Elasticsearch: Installation

Run on Docker Use the following command to run Elasticsearch in a docker container- Here is the meaning of all the params and flags passed to the command- Run the following command to set(reset) the password- You will get some output like below- You can see the password. Check Elasticsearch Installation Check using Postman In … Read more

Python: Lambda Function

Start with the keyword “lambda”. Then put the list of parameters, which are separated by commas. Put colon(:) after that. Finally, write the return value or expression. Only one expression can be here, which is returned.