PHP
6 Questions
27 Total Posts
13 Snippets
All
What's New in PHP 8.3? Your Guide to the Latest Features and Enhancements
PHP, the popular scripting language, continues its evolution with the major release of PHP 8.3. This update, though categorized as a minor release, brings a plethora of new features (...)
0
0
2553
A Comprehensive Guide to #[Override] Attribute in PHP 8.3
PHP 8.3 has ushered in an array of advanced features, among which the #[Override] attribute stands out. This attribute, while known in other languages, is a fresh addition to (...)
0
0
6284
Laravel Pint & VS Code: Automate Your Code Formatting
Laravel Pint is an opinionated PHP code style fixer built on top of PHP-CS-Fixer, designed to simplify the process of ensuring clean and consistent code style in Laravel projects. (...)
0
0
6207
Best Practices for Testing and Quality Assurance in Custom Web App Development
In the fast-paced world of web app development, delivering high-quality products that meet customer expectations is crucial. But how can you ensure your custom web application (...)
0
0
2918
PHP-CS-Fixer: The Ultimate Guide to PHP Code Formatting in VSCode
In this comprehensive guide, we will explore how to use PHP-CS-Fixer in VSCode to automate the process of PHP code formatting and adhere to the best coding practices.
0
0
4959
Struggling to find php8.2-fpm.sock in /run/php/php8.2-fpm.sock, Nginx Web Server
Asked by Manjeet ·
Despite configuring my server to listen on UNIX-domain sockets instead of TCP sockets, the socket file appears to be missing. Upon executing 'ls /run/php,' only php8.2-fpm.pid (...)
0
2
11620
Learn PHP Development from beginning.
PHP stance Hypertext Preprocessor, it's server-side scripting laungage and easy to use. PHP also well known for its speed, simplicity, flexibility features that have made it (...)
0
0
1387
What is the difference between classes vs enums in PHP 8.1?
One of the common questions that I have been asked is what is the difference between classes and enums. Class(es) and enum(s) share many similarities but differ in some aspects. (...)
0
0
2207
How to use the enumerations(Enums) of PHP 8.1 in Laravel?
The release of PHP 8.1 brings native enumerations to PHP. There is no more requirement for custom solutions in your Laravel projects since the Laravel v8.69 release has you back. (...)
0
0
7851
What is Enumerations(Enums) in PHP 8.1? Enums in PHP v8.1 Explained in detail with examples.
PHP 8.1 added many new features, and Enumerations (Enum) is our favourite new feature. Enumerations (or enums for short) allow us to define a new structure similar to a class however (...)
0
0
6445