PHP 8.4.3 & PHP 8.3.16 Released!
Seeder vs Factory: Populating Test Data in Laravel; A Fluent Email Validation Rule Added in Laravel 11.38; and Supervisor Guide for PHP Developers.
PHP
📚 PHP Memory Optimization Tips
Optimizing memory usage in PHP is essential for building efficient and scalable applications. Here are some key tips for optimizing memory usage in PHP.
📚 AI Image Workflows with PHP and Cloudinary – From Upload to Delivery
Do you work with images in your PHP apps? Check out this must-read article on streamlining and scaling your image workflow with AI. The article walks you through a complete image workflow—from client-side upload and user-specified metadata to auto-generating alt text, dynamic transformations, and optimized delivery.
📚 How to Resolve the ‘Permission Denied’ Error in PHP File Handling
When working with file handling in PHP, encountering the dreaded Permission Denied error can be frustrating, especially when dealing with file creation or writing operations.
📚 Support for .env Files: Now Built into PhpStorm
.env files are widely used to configure applications by storing configuration settings, environment variables, and sensitive information. This eliminates the need to hardcode these values into the application code.
📚 PHP 8.4.3 & PHP 8.3.16 Released!
The PHP development team announces the immediate availability of PHP 8.4.3 & PHP 8.3.16. This is a bug fix release.
Now in its 22nd year, phpday has been held continuously since 2003. The 2025 edition will be hosted in Verona on May 15-16.
📚 Demystifying WordPress setup methods for web devs
Explore three popular WordPress setup methods: Vanilla WordPress, Composer, and the Bedrock framework. Learn the pros and cons of each to find the best fit for your projects.
📚 Php Base64 encode/decode – best practices and use cases
Base64 encoding in PHP is a simple yet powerful tool for transmitting binary data as text. Here’s what you need to know.
📚 Finding and Cleaning OJS (Open Journal System) Malicious Trojan Files
I encountered some small attacks on my ojs web site (version 3.3.0–20) that is just about changing some files adding some other web site links.
With the advent of digitization, the scope of security breaches seems to have increased to a great extent. So even if you are willing to survive in this digital era, you just don’t have to develop a website based on PHP but also ensure that security is pretty much paramount.
Laravel
📚 Converting Fluent Values to Arrays in Laravel
Need to consistently handle values as arrays in your Fluent instances? Laravel’s new array() method provides a clean way to convert values without manual casting.
📚 Seeder vs Factory: Populating Test Data in Laravel
This article breaks down the differences between seeders and factories, shares real-world examples of when to use each, and offers tips to help you decide the best approach for your project.
📚 Mastering Conditional Logic in Laravel with when() and unless() Methods: Real-Life Examples
In this article, we’ll explore how to use these methods in real-life scenarios, demonstrating how they can streamline complex conditional logic in Laravel applications.
📚 Simplified Stream Response Handling in Laravel
Working with HTTP streams in Laravel has traditionally involved multiple steps and conversions, especially when dealing with file downloads or transfers. Laravel’s new resource() method streamlines this process, reducing complex stream handling to a single method call.
📚 Interactive Console Commands in Laravel
When building command-line tools in Laravel, one of the common challenges is handling missing or incorrect user input gracefully.
📚 Permanent Record Deletion with Laravel’s forceDestroy
Laravel’s soft deletes feature helps maintain data integrity by keeping deleted records in your database. However, there are times when you need to permanently remove these records.
📚 How to Fix Weak TLS/SSL Configuration in Laravel
In this blog, we’ll explain what weak TLS/SSL configurations are, their risks, and how you can fix them in your Laravel project.
📚 How to generate fake data using factory tinker in laravel 11 Example
In this article, I will show you How to generate fake data using factory tinker in laravel 11 application.
📚 How To Create Dynamic Apexcharts Using Larapex Charts Package in Laravel 11
In this tutorial, I will show you how to create dynamic apexcharts using larapex charts package in laravel 11 application.
📚 Understanding and Applying Real-World OOP Principles in Laravel Framework : A Practical Guide
OOP Examples with like “book,” “animal,” or “car” are often oversimplified and can feel disconnected from real-world backend development. To bridge this gap, let’s focus on practical, real-world OOP principles in the context of a Laravel framework.
📚 A Fluent Email Validation Rule Added in Laravel 11.38
This week, the Laravel team released v11.38, which includes a fluent Email validation rule, the ability to retrieve a form request or fluent value as an array, a finally() pipeline method, and more.
📚 Television is a Multi-purpose Fuzy Finder TUI
Television is a blazing-fast general-purpose fuzzy finder TUI. It is highly configurable and allows you to quickly search through all kinds of data sources, such as files, Git history, environment variables, etc.
📚 Supervisor Guide for PHP Developers
This post will explain how to set up Supervisor, use it for PHP applications, and configure it with all available options for maximum efficiency.
📚 Enhance Your Laravel Applications with Automated Browser Testing!
Whether you’re a newcomer to Laravel or an experienced developer, understanding and utilizing Dusk can significantly enhance your testing workflow.