#php
Read more stories on Hashnode
Articles with this tag
Have u ever heard about N+1 Query Problem ? The N+1 query problem is a performance issue that can occur in database-driven applications, especially...
Let's say you have inputs and you wanna validate them in real time. how you can do that and without needing to duplicate your validation code on the...
Tinker and seeder are powerful tools that can help you manage and maintain your database with ease, you can use them for testing. Tinker uses a...
First, Let's agree that explode() and str_split() have the same work, they change the string into an array. but whereas the explode() function...
How to use Ternary operator? ยท There is also a short-hand if else, which is known as the ternary operator because it consists of three operands. It can...
PHP will compare alpha strings using the greater than and less than comparison operators based up on alphabetical order. Example: /* In alphabetic The...