The new json_validate() function in PHP 8.3
October 9, 2022 — Today, if we want to validate a JSON string in PHP, we can use the json_decode()
function. Here’s how it works.
A blog on PHP, JavaScript, and more
October 9, 2022 — Today, if we want to validate a JSON string in PHP, we can use the json_decode()
function. Here’s how it works.
October 4, 2022 — If you’re a developer, you must be familiar with the concept of version control. It’s a system that records changes to a file or set of files over time so that you can recall specific versions later.
September 30, 2022 — The use of environment files in Laravel (or any other similar framework) is pretty common. You can use the .env
file to store the environment variables. This is a great way to store sensitive information like API keys, database credentials, etc. in a secure way.
September 28, 2022 — It wouldn’t sound too obvious but sometimes your function might need to return multiple values. For instance, in one of the applications I’m working on, I have a JavaScript function where I have to calculate two different values and return them.
September 21, 2022 — I recently wrote an article on how to conditionally spread objects in JavaScript. In that article, I mentioned that the spread operator (...
) can be used to spread the properties of an object.
September 18, 2022 — Recently, I stumbled upon a problem where I had to toggle the state of the checkbox based on the viewport width. So, let’s say, if the viewport width is changed and is less than 879px
and the checkbox is checked, then it should be unchecked.
September 16, 2022 — In the recent Laravel 9.x release, the framework introduced a new discardChanges()
method on the Model
class. This method allows you to discard the changes made to the model instance. So, let’s see how we can use this method.
September 13, 2022 — In JavaScript, if you want to populate an object with some properties from another object, you can use the spread operator (...
) to do so.
September 10, 2022 — Converting images from one format to another programmatically is sort of a common task. For example, you may want to convert all your PNG images to WebP format to save bandwidth and improve the performance of your application.
August 31, 2022 — PHP is one of those languages that are easy to learn and easy to use. But sometimes it surprises you with weird quirks that you would only imagine in your dreams.
Follow me everywhere